10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import { DashboardProfile } from "../components";
|
|
|
|
export default function DashboardProfilePage() {
|
|
return (
|
|
<>
|
|
<DashboardProfile />
|
|
</>
|
|
);
|
|
}
|