This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/resources/scripts/components/dashboard/AccountApiContainer.tsx

16 lines
550 B
TypeScript

import React from 'react';
import ContentBox from '@/components/elements/ContentBox';
import CreateApiKeyForm from '@/components/dashboard/forms/CreateApiKeyForm';
export default () => {
return (
<div className={'my-10 flex'}>
<ContentBox title={'Create API Key'} className={'flex-1'} showFlashes={'account'}>
<CreateApiKeyForm/>
</ContentBox>
<ContentBox title={'API Keys'} className={'ml-10 flex-1'}>
<p>Testing</p>
</ContentBox>
</div>
);
};