Skip to content
Snippets Groups Projects
Commit bdd69934 authored by Avery Jacobsen's avatar Avery Jacobsen :8ball:
Browse files

Added placeholder inventory react component

parent b27660bf
No related branches found
No related tags found
1 merge request!1Correctly removed counter feature and changed minimal-app to inventory-app,...
// 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 { Inventory } from './features/inventory/inventory.js';
export function App() { export function App() {
const page = const page =
<> <>
<Inventory/>
</>; </>;
return ( return (
<Routes> <Routes>
......
export function Inventory() {
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