From fb1f80d5af7e3808a3506ee5d2b609394f452cec Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 8 Feb 2021 15:35:49 +0100 Subject: account page done --- components/recentGames.tsx | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 components/recentGames.tsx (limited to 'components') diff --git a/components/recentGames.tsx b/components/recentGames.tsx new file mode 100644 index 0000000..6bd766b --- /dev/null +++ b/components/recentGames.tsx @@ -0,0 +1,46 @@ +import { CSSProperties, Component } from 'react'; + +var LeftAlignedTableColumn: CSSProperties = { + textAlign: "left", + paddingLeft: 16 +} + +var RightAlignedTableColumn: CSSProperties = { + textAlign: "right", + paddingRight: 16 +} + +export default class RecentGames extends Component { + constructor(props: { + user?: string; + }) { + super(props); + } + + render () { + return
+

Recente partijen

+ + + + + + + + + + + + + + + + + + + +
TegenstanderUitkomstZettenDatum
Naam hierGewonnen7Vandaag
Nog meer namenGelijkspel42Gisteren
+
+ } +} + -- cgit v1.2.3