mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-15 04:41:10 -05:00
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import ChangePassword from './change-password';
|
|
import NotifyEvent from './notify-event';
|
|
import NotifySettings from './notify-settings';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className='grid gap-4 md:grid-cols-2 lg:grid-cols-3'>
|
|
<NotifySettings />
|
|
<NotifyEvent />
|
|
<ChangePassword />
|
|
</div>
|
|
);
|
|
}
|