Ivy-Frontend/src/App.tsx

15 lines
320 B
TypeScript
Raw Normal View History

2023-02-13 22:11:25 +08:00
import React from "react";
import logo from "./img/ivy.svg";
2023-02-13 22:49:32 +08:00
import styles from "./styles";
2023-02-13 22:49:32 +08:00
export default function App() {
return (
2023-02-13 22:49:32 +08:00
<div style={styles.background}>
<body style={styles.background}>
<img src={logo} alt="logo" />
2023-02-13 22:11:25 +08:00
<p>Ivy - Inventory Manager</p>
2023-02-13 22:49:32 +08:00
</body>
</div>
);
}