import Head from 'next/head'
import '../static/everypage.css'
import {Footer, TurniereNavigation} from "../js/CommonComponents";
import React from "react";
import {
Button,
Card,
CardBody,
Container,
CustomInput, Fade,
Form,
FormGroup,
Input,
InputGroup,
InputGroupAddon,
Label
} from "reactstrap";
export default () => (
Turnier erstellen: turnie.re
)
function CreateTournamentCard() {
return (
Turnier erstellen
);
}
class CreateTournamentForm extends React.Component {
constructor(props) {
super(props);
this.state = { fadeIn: false };
this.toggle = this.toggle.bind(this);
}
render() {
return (
);
}
toggle() {
this.setState({
fadeIn: !this.state.fadeIn
});
}
}
function TeamsContainer() {
return (
Noch keine Teams hinzugefügt!
);
}