mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
* Remove unused imports * Fix === warnings * Remove unnecessary escape character * Add alt text for images * Add missing alt text * Remove unused variable * Change scrubber buttons from anchors * Change folder select anchor to button * Replace anchors with buttons * Add missing useEffect dependencies * Refactor filter debounce * Throw error object * Update dependencies * Fix === warning
10 lines
341 B
TypeScript
10 lines
341 B
TypeScript
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}/>;
|
|
};
|