mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-10 02:11:19 -05:00
18 lines
337 B
TypeScript
18 lines
337 B
TypeScript
'use client';
|
|
|
|
import { Invite } from './invite';
|
|
import { Register } from './register';
|
|
import { Verify } from './verify';
|
|
import { VerifyCode } from './verify-code';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className='space-y-3'>
|
|
<Invite />
|
|
<Register />
|
|
<VerifyCode />
|
|
<Verify />
|
|
</div>
|
|
);
|
|
}
|