Implemented skeleton

This commit is contained in:
2023-11-02 23:08:51 +01:00
parent 52fbdbc184
commit 3cb85e6273
7 changed files with 54 additions and 98 deletions

View File

@@ -0,0 +1,8 @@
.table{
margin: 0 auto;
border: 1px solid;
}
.td{
padding: 12px 16px;
}

View File

@@ -0,0 +1,16 @@
import styles from './bingo.module.css'
import BingoRow from './bingorow.tsx'
export default function Bingo(){
return(
<table className={styles.table}>
<tbody>
<BingoRow/>
<BingoRow/>
<BingoRow/>
<BingoRow/>
<BingoRow/>
</tbody>
</table>
);
}

View File

@@ -0,0 +1,7 @@
import styles from './bingo.module.css'
export default function BingoItem(){
return(
<td className={styles.td}>Item</td>
);
}

View File

@@ -0,0 +1,13 @@
import BingoItem from './bingoitem.tsx'
export default function BingoRow(){
return(
<tr>
<BingoItem/>
<BingoItem/>
<BingoItem/>
<BingoItem/>
<BingoItem/>
</tr>
);
}