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