import React from 'react'; import ContentContainer from '@/components/elements/ContentContainer'; import { CSSTransition } from 'react-transition-group'; interface Props { children: React.ReactNode; className?: string; } export default ({ className, children }: Props) => ( <> {children}

© 2015 - 2020  Pterodactyl Software

);