mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00
17 lines
550 B
TypeScript
17 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>
|
|
);
|
|
};
|