aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-02-04 20:48:00 +0100
committerlonkaars <l.leblansch@gmail.com>2021-02-04 20:48:00 +0100
commitfaf61e578267b3a5e2f5e5e74e6ae238b19bd76a (patch)
treed016a02f9ec5293077c8d0fe170f6d6b25d14a11 /components
parentc6762af035e354e41a12af143f3fc5094551687e (diff)
settings page WIP
Diffstat (limited to 'components')
-rw-r--r--components/gameSettings.tsx6
1 files changed, 0 insertions, 6 deletions
diff --git a/components/gameSettings.tsx b/components/gameSettings.tsx
index 8f15aa1..fab1d55 100644
--- a/components/gameSettings.tsx
+++ b/components/gameSettings.tsx
@@ -162,11 +162,6 @@ type editGameSettingsProps = {
};
export class EditGameSettings extends Component<editGameSettingsProps> {
- constructor(props: editGameSettingsProps) {
- super(props);
- console.log(this.props.parentState)
- }
-
render () {
return <DialogBox title="Spelregels aanpassen" style={{
margin: 0,
@@ -213,7 +208,6 @@ export class EditGameSettings extends Component<editGameSettingsProps> {
}
this.props.setGameRules(rules);
this.props.hideEditGameRules();
- console.log(rules)
}}>Instellingen opslaan</Button>
</DialogBox>;
}