import React from 'react'; import { Route } from 'react-router'; import { CSSTransition, TransitionGroup } from 'react-transition-group'; import styled from 'styled-components'; import { breakpoint } from 'styled-components-breakpoint'; type Props = Readonly<{ children: React.ReactNode; }>; const ContentContainer = styled.div` max-width: 1200px; ${tw`mx-4`}; ${breakpoint('xl')` ${tw`mx-auto`}; `}; `; export default ({ children }: Props) => ( (
{children}

© 2015 - 2019  Pterodactyl Software

)} /> );