Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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;
|