Fix typo in dashboard

This commit is contained in:
Keannu Bernasol 2023-12-02 21:32:54 +08:00
parent 201822b271
commit a94831fbe1
2 changed files with 5 additions and 3 deletions

View file

@ -128,7 +128,7 @@ export default function Dashboard() {
...{ float: "left", position: "absolute" },
}}
>
Item Count
Items in Database
</p>
<p
@ -170,7 +170,7 @@ export default function Dashboard() {
...{ float: "left", position: "absolute" },
}}
>
Functional Item
Functional Items
</p>
<p

View file

@ -1,3 +1,5 @@
import styles from "../../styles";
export default function EquipmentInstancesListPage() {
return <div>{"EquipmentInstancesListPage"}</div>;
return <div style={styles.background}>{"EquipmentInstancesListPage"}</div>;
}