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'; export interface PageContentBlockProps { title?: string; className?: string; showFlashKey?: string; } const PageContentBlock: React.FC = ({ title, showFlashKey, className, children }) => { return ( <> {title && {title} } {showFlashKey && } {children}

© 2015 - 2020  Pterodactyl Software

); }; export default PageContentBlock;