mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
WIP
This commit is contained in:
15
ui/v2.5/src/components/scenes/scenes.tsx
Normal file
15
ui/v2.5/src/components/scenes/scenes.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import { Route, Switch } from "react-router-dom";
|
||||
import { Scene } from "./SceneDetails/Scene";
|
||||
import { SceneList } from "./SceneList";
|
||||
import { SceneMarkerList } from "./SceneMarkerList";
|
||||
|
||||
const Scenes = () => (
|
||||
<Switch>
|
||||
<Route exact={true} path="/scenes" component={SceneList} />
|
||||
<Route exact={true} path="/scenes/markers" component={SceneMarkerList} />
|
||||
<Route path="/scenes/:id" component={Scene} />
|
||||
</Switch>
|
||||
);
|
||||
|
||||
export default Scenes;
|
||||
Reference in New Issue
Block a user