blob: 86dea5bced7a87220cfb6ff1d3320e3c1ca368f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// interface CurrentGameSettingsProps {
// gameID: string;
// }
export function CurrentGameSettings(/*props: CurrentGameSettingsProps*/) {
return <div>
<p style={{ opacity: .6, fontStyle: "italic" }}>
Geen tijdslimiet<br/>
Standaardregels<br/>
Gerangschikt
</p>
</div>;
}
|