mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* Make performer page tabbed * Add performer scenes tab * Make performer scenes criteria smarter * Adjust performer page layout. Add URL links * Add lightbox for performer image * Alias editing
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
import _ from "lodash";
|
|
import React, { FunctionComponent } from "react";
|
|
import { IBaseProps } from "../../models/base-props";
|
|
import { SceneList } from "./SceneList";
|
|
|
|
interface ISceneListPageProps extends IBaseProps {}
|
|
|
|
export const SceneListPage: FunctionComponent<ISceneListPageProps> = (props: ISceneListPageProps) => {
|
|
return <SceneList base={props}/>;
|
|
};
|