import Head from 'next/head' import "../style.css" class TournamentPage extends React.Component { static async getInitialProps({query}) { return {query} } render() { return (
Turnie.re - Turnieranzeige

Turnieranzeige

Code: {this.props.query.code}

); } } export default TournamentPage