diff options
Diffstat (limited to 'frontend/src/components/main.js')
| -rw-r--r-- | frontend/src/components/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/main.js b/frontend/src/components/main.js index 18b0f5a..b359105 100644 --- a/frontend/src/components/main.js +++ b/frontend/src/components/main.js | |||
| @@ -2,6 +2,7 @@ import React from 'react'; | |||
| 2 | 2 | ||
| 3 | import "../App.css" | 3 | import "../App.css" |
| 4 | import "./main.css"; | 4 | import "./main.css"; |
| 5 | import { Link } from 'react-router-dom'; | ||
| 5 | 6 | ||
| 6 | export default function Main(props) { | 7 | export default function Main(props) { |
| 7 | 8 | ||
| @@ -9,7 +10,7 @@ export default function Main(props) { | |||
| 9 | return ( | 10 | return ( |
| 10 | <main> | 11 | <main> |
| 11 | <h1>{props.text}</h1> | 12 | <h1>{props.text}</h1> |
| 12 | </main> | 13 | </main> |
| 13 | ) | 14 | ) |
| 14 | } | 15 | } |
| 15 | 16 | ||