Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import React from "react";
- import CreateStaff from "./CreateStaff";
- import CreateStaffLoading from "./CreateStaffLoading";
- import { fetchStaff, fetchTeamLeads } from "@/app/api/staff";
- import { useSearchParams } from "next/navigation";
-
- interface SubComponents {
- Loading: typeof CreateStaffLoading;
- }
-
- const CreateStaffWrapper: React.FC & SubComponents = async () => {
-
-
- return <CreateStaff/>;
- };
-
- CreateStaffWrapper.Loading = CreateStaffLoading;
-
- export default CreateStaffWrapper;
|