Ivy-Frontend/src/App.tsx

16 lines
370 B
TypeScript
Raw Normal View History

2023-02-13 22:11:25 +08:00
import React from "react";
2023-02-13 23:54:15 +08:00
import AppLogo from "./components/Icons/AppLogo/AppLogo";
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}>
2023-02-13 23:54:15 +08:00
<div style={styles.flex_row}>
<AppLogo size={64} color="#6f9b78" />
2023-02-13 22:11:25 +08:00
<p>Ivy - Inventory Manager</p>
2023-02-13 23:54:15 +08:00
</div>
<p>Welcome!</p>
</div>
);
}