FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
382 B

  1. import React from "react";
  2. import GeneralLoading from "../General/GeneralLoading"
  3. import ImportTesting from "./ImportTesting";
  4. interface SubComponents {
  5. Loading: typeof GeneralLoading;
  6. }
  7. const ImportTestingWrapper: React.FC & SubComponents = async () => {
  8. return <ImportTesting/>
  9. }
  10. ImportTestingWrapper.Loading = GeneralLoading;
  11. export default ImportTestingWrapper