misc_pterodactyl-panel/resources/scripts/components/admin/settings/SettingsContainer.tsx

17 lines
702 B
TypeScript
Raw Normal View History

import React from 'react';
import tw from 'twin.macro';
import AdminContentBlock from '@/components/admin/AdminContentBlock';
export default () => {
return (
2021-01-07 16:44:24 +00:00
<AdminContentBlock title={'Settings'}>
<div css={tw`w-full flex flex-row items-center mb-8`}>
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>Settings</h2>
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>Configure and manage settings for Pterodactyl.</p>
</div>
</div>
</AdminContentBlock>
);
};