Skip to content
Snippets Groups Projects
Commit 6712bd21 authored by Muhammad Usama's avatar Muhammad Usama
Browse files

Task3

parent b667c2d0
No related branches found
No related tags found
No related merge requests found
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`the app has one labeled button that displays the value from the store 1`] = `<div />`; exports[`the app has one labeled button that displays the value from the store 1`] = `
<div>
<main>
[placeholder text]
</main>
</div>
`;
import { Routes, Route } from 'react-router-dom'; import { Routes, Route } from 'react-router-dom';
// import { Counter } from './features/counter/counter.js'; // import { Counter } from './features/counter/counter.js';
import { MyApp } from './features/myApp/myApp';
export function App() { export function App() {
const page = const page =
<> <>
{/* <Counter label={'Taps'} /> */} { <MyApp/>
/* <Counter label={'Taps'} /> */}
</>; </>;
return ( return (
<Routes> <Routes>
......
export function MyApp() {
return (
<main>
[placeholder text]
</main>
);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment