diff --git a/minimal-app/src/app.js b/minimal-app/src/app.js index 1b3e642bf06854142f1364a2c71445a35534bd9b..3414241bf8bbf07f518863442700033491ee2d67 100644 --- a/minimal-app/src/app.js +++ b/minimal-app/src/app.js @@ -1,13 +1,12 @@ import React from 'react'; import { Route } from 'react-router-dom'; -import { Counter } from './features/counter/counter.js'; +import { Maze } from './features/invisibleMaze/invisibleMaze.js'; export function App() { return ( <> <Route exact path={'/'}> - <Counter label={'Taps'} /> </Route> </> ); diff --git a/minimal-app/src/features/invisibleMaze/invisibleMaze.js b/minimal-app/src/features/invisibleMaze/invisibleMaze.js new file mode 100644 index 0000000000000000000000000000000000000000..20443922f87f8762021f3101efd381d0bab50d24 --- /dev/null +++ b/minimal-app/src/features/invisibleMaze/invisibleMaze.js @@ -0,0 +1,9 @@ +import React from 'react'; + +export function InvisibleMaze() { + return ( + <main> + [placeholder text] + </main> + ); +} \ No newline at end of file