Intial general structure of source code and page.

This commit is contained in:
codevictory
2021-11-11 21:03:23 +02:00
parent 2581adce4d
commit e0d29f173d
19 changed files with 249 additions and 13 deletions

View File

@@ -0,0 +1,57 @@
import { Link } from 'react-router-dom';
import "./styles/program.css";
export const Program = () => {
return (
<article>
<h1>Program</h1>
<table>
<tr>
<th></th>
<th>12:00</th>
<th></th>
</tr>
<tr>
<td>Speech</td>
<td>Boring BS. Lorem ipsum dolor sit amet.</td>
<td>Veikko</td>
</tr>
<tr>
<td>Lunch</td>
<td>Eating yummy yum.</td>
<td><Link to="/menu" >To menu</Link></td>
</tr>
<tr>
<th></th>
<th>14:00</th>
<th></th>
</tr>
<tr>
<td>Games</td>
<td>Activity lol.</td>
<td>Be active.</td>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
<tr>
<th></th>
<th>23:00</th>
<th></th>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
<tr>
<td>More something</td>
<td>Lorem ipsum dolor sit amet.</td>
<td>More more more</td>
</tr>
</table>
</article>
)
}