| | |
| | | import ExampleBlinkPage from "./example/ExampleBlinkPage"; |
| | | import ExampleDrawDyPage from "./example/ExampleDrawDyPage"; |
| | | import ExampleDrawDy2Page from "./example/ExampleDrawDy2Page"; |
| | | import ExampleDrawDyPlantPage from "./example/ExampleDrawDyPlantPage"; |
| | | |
| | | function App() { |
| | | return ( |
| | |
| | | <Route path="/example/blink" exact component={ExampleBlinkPage}/> |
| | | <Route path="/example/dydraw" exact component={ExampleDrawDyPage}/> |
| | | <Route path="/example/dy2draw" exact component={ExampleDrawDy2Page}/> |
| | | <Route path="/example/dy3draw" exact component={ExampleDrawDyPlantPage}/> |
| | | <Route path="/doc" exact component={DocPage}/> |
| | | <Route path="/doc/:page" exact component={DocPage}/> |
| | | <Route path="/test" exact component={TestPage}/> |