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,...
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
// 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 { Inventory } from './features/inventory/inventory.js';
export function App() {
const page =
<>
<Inventory/>
</>;
return (
<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