10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { AuthGuard } from "@/components/auth-guard"
|
|
import { CreateSupplyPage } from "@/components/supplies/create-supply-page"
|
|
|
|
export default function CreateSupplyPageRoute() {
|
|
return (
|
|
<AuthGuard>
|
|
<CreateSupplyPage />
|
|
</AuthGuard>
|
|
)
|
|
}
|