mirror of
https://github.com/lemeow125/React-NotesApp.git
synced 2025-04-19 00:11:28 +08:00
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
import styles from "../../styles";
|
|
import Header from "../../Components/Header/Header";
|
|
import NoteMapper from "../../Components/Notes/Notes";
|
|
export default function Home() {
|
|
return (
|
|
<div style={styles.background}>
|
|
<Header />
|
|
<NoteMapper />
|
|
</div>
|
|
);
|
|
}
|