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

added unstyled HTML to inventory.js

parent bdd69934
No related branches found
No related tags found
1 merge request!1Correctly removed counter feature and changed minimal-app to inventory-app,...
...@@ -3,7 +3,40 @@ ...@@ -3,7 +3,40 @@
exports[`the app has one labeled button that displays the value from the store 1`] = ` exports[`the app has one labeled button that displays the value from the store 1`] = `
<div> <div>
<main> <main>
[placeholder text] <header>
<label>
App Title
</label>
</header>
<table>
<thead>
<tr>
<th
colspan="2"
>
Menu (Two items)
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Item 1
<button>
Item 1 Button
</button>
</td>
<td>
Item 2
<button>
Item 2 Button
</button>
</td>
</tr>
</tbody>
</table>
<hr />
Inventory
</main> </main>
</div> </div>
`; `;
export function Inventory() { export function Inventory() {
return ( return (
<main> <main>
[placeholder text] <header>
<label>
App Title
</label>
</header>
<table>
<thead>
<tr>
<th colspan="2">Menu (Two items)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item 1 <button> Item 1 Button </button></td>
<td>Item 2 <button> Item 2 Button </button></td>
</tr>
</tbody>
</table>
<hr></hr>
Inventory
</main> </main>
); );
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment