misc_pterodactyl-panel/resources/scripts/components/admin/AdminContentBlock.tsx

40 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-01-07 16:44:24 +00:00
import React, { useEffect } from 'react';
// import { CSSTransition } from 'react-transition-group';
import tw from 'twin.macro';
import FlashMessageRender from '@/components/FlashMessageRender';
2021-01-07 16:44:24 +00:00
const AdminContentBlock: React.FC<{ title?: string; showFlashKey?: string; className?: string }> = ({ children, title, showFlashKey }) => {
useEffect(() => {
if (!title) {
return;
}
2021-01-07 16:44:24 +00:00
document.title = `Admin | ${title}`;
}, [ title ]);
2021-01-07 16:44:24 +00:00
return (
// <CSSTransition timeout={150} classNames={'fade'} appear in>
<>
{showFlashKey &&
<FlashMessageRender byKey={showFlashKey} css={tw`mb-4`}/>
}
{children}
{/* <p css={tw`text-center text-neutral-500 text-xs mt-4`}>
&copy; 2015 - 2021&nbsp;
<a
rel={'noopener nofollow noreferrer'}
href={'https://pterodactyl.io'}
target={'_blank'}
css={tw`no-underline text-neutral-500 hover:text-neutral-300`}
>
Pterodactyl Software
</a>
</p> */}
</>
// </CSSTransition>
);
};
export default AdminContentBlock;