mirror of
https://github.com/stashapp/stash.git
synced 2025-12-11 02:42:43 +01: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
10 lines
365 B
TypeScript
10 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}/>;
|
|
};
|