import React from 'react'; import { CSSTransition } from 'react-transition-group'; import tw from 'twin.macro'; import FlashMessageRender from '@/components/FlashMessageRender'; const PageContentBlock: React.FC<{ showFlashKey?: string; className?: string }> = ({ children, showFlashKey }) => ( <> {showFlashKey && } {children} {/*

© 2015 - 2020  Pterodactyl Software

*/}
); export default PageContentBlock;