Skip to content

Commit

Permalink
Add: Layout files
Browse files Browse the repository at this point in the history
  • Loading branch information
Parikshit85 committed Apr 2, 2024
1 parent 6ade317 commit e10e225
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/ui/app/influencer/dashboard/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

export default function InfluencerDashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div>{children}</div>;
}
8 changes: 8 additions & 0 deletions src/ui/app/influencer/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"use client";
import CircularPageLoading from "@/app/components/circularPageLoading";

type Props = {};

export default function Loading({}: Props) {
return <CircularPageLoading />;
}
9 changes: 9 additions & 0 deletions src/ui/app/influencer/messages/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

export default function InfluencerMessagesLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div>{children}</div>;
}
9 changes: 9 additions & 0 deletions src/ui/app/influencer/orders/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

export default function InfluencerOrdersLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div>{children}</div>;
}

0 comments on commit e10e225

Please sign in to comment.