Skip to content
Snippets Groups Projects
Commit 54a08275 authored by jherman5's avatar jherman5
Browse files

Added custom component file patternGeneration. Edited app.js to import from...

Added custom component file patternGeneration. Edited app.js to import from said file. Checkpoint 2.
parent 542b2d5a
Branches
No related tags found
No related merge requests found
...@@ -61,3 +61,45 @@ ...@@ -61,3 +61,45 @@
[0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report [0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report [0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report [0826/200529.143:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.627:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.628:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.628:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.628:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.628:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.629:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.630:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/202430.630:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.113:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.114:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.114:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.114:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.114:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.114:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.115:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.116:ERROR:crash_report_database_win.cc(469)] failed to stat report
[0826/203439.116:ERROR:crash_report_database_win.cc(469)] failed to stat report
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 { Pattern } from './features/patternGen/patternGeneration';
export function App() { export function App() {
return ( return (
<> <>
<Route exact path={'/'}> <Route exact path={'/'}>
<Counter label={'Taps'} /> <Pattern label={'Taps'} />
</Route> </Route>
</> </>
); );
......
import React from 'react';
export function Pattern() {
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