mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-01-19 23:33:10 +08:00
14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
|
import styles from "../../styles";
|
||
|
|
||
|
export default function Dashboard() {
|
||
|
return (
|
||
|
<div style={styles.background}>
|
||
|
<p style={{ ...styles.text_dark, ...styles.text_M }}>
|
||
|
CITC EQUIPMENT
|
||
|
<br />
|
||
|
TRACKER
|
||
|
</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|