mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
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:
10
ui/v2/src/components/scenes/SceneListPage.tsx
Normal file
10
ui/v2/src/components/scenes/SceneListPage.tsx
Normal 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}/>;
|
||||
};
|
||||
Reference in New Issue
Block a user