Skip to content
Snippets Groups Projects
Commit 78d475ae authored by astumpff2's avatar astumpff2
Browse files

Completed checkpoint 2

parent 8976f3a2
Branches
No related tags found
No related merge requests found
import React from 'react'; import React from 'react';
import { Route } from 'react-router-dom'; import { Route } from 'react-router-dom';
import { Counter } from './features/counter/counter.js'; import { Maze } from './features/invisibleMaze/invisibleMaze.js';
export function App() { export function App() {
return ( return (
<> <>
<Route exact path={'/'}> <Route exact path={'/'}>
<Counter label={'Taps'} />
</Route> </Route>
</> </>
); );
......
import React from 'react';
export function InvisibleMaze() {
return (
<main>
[placeholder text]
</main>
);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment