8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
'use client';
|
|
|
|
import { LayoutMain } from '@/modules/layout';
|
|
|
|
export const Main = () => {
|
|
return <LayoutMain title='User Apps' />;
|
|
};
|