import React from 'react'; import ContentContainer from '@/components/elements/ContentContainer'; import { CSSTransition } from 'react-transition-group'; import tw from 'twin.macro'; import FlashMessageRender from '@/components/FlashMessageRender'; import { Helmet } from 'react-helmet'; import useServer from '@/plugins/useServer'; interface Props { title?: string; className?: string; showFlashKey?: string; } const PageContentBlock: React.FC = ({ title, showFlashKey, className, children }) => { const { name } = useServer(); return ( <> {!!title && {name} | {title} } {showFlashKey && } {children}

© 2015 - 2020  Pterodactyl Software

); }; export default PageContentBlock;