blob: 9e78af3cd0dd3db77909c7740dd47b84da440e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import styles from "./App.module.css"
import Editor from "./Editor"
import Tutorial from "./Tutorial"
import icon from "./favicon.png"
const App = () => {
return (
<div className={styles.app}>
<header className={styles.header}>
<div className={styles.iconRow}>
<img src={icon} />
<strong>SLAM</strong>
</div>
<div className={styles.sloganRow}>
<small>A Mere Stack Language</small>
</div>
</header>
<div className={styles.editor}><Editor /></div>
<div className={styles.tutorial}><Tutorial /></div>
</div>
)
}
export default App
|