Add scenes tab to performer page (#280)

* 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
This commit is contained in:
WithoutPants
2020-01-06 05:56:06 +11:00
committed by Leopere
parent 7fdaccf669
commit bab7c8f250
12 changed files with 761 additions and 333 deletions

View File

@@ -0,0 +1,10 @@
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}/>;
};