import {
Badge,
ButtonGroup,
Button,
Collapse,
Nav,
Navbar,
NavbarBrand,
NavbarToggler,
NavItem,
NavLink
} from 'reactstrap';
export function BigImage(props) {
return (
{props.text}
);
}
export class TurniereNavigation extends React.Component {
constructor(props) {
super(props);
this.toggle = this.toggle.bind(this);
this.state = {
collapsed: true
};
}
toggle() {
this.setState({
collapsed: !this.state.collapsed
});
}
render() {
return (
turnie.re
);
}
}
function Navlink(props) {
return (
{props.text}
);
}
function Betabadge() {
return (BETA);
}
function LoginLogoutButtons() {
return (
);
}
export function Footer() {
return (
);
}