FPSMS-frontend
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ImportTestingWrapper.tsx 382 B

6 месяцев назад
1234567891011121314151617
  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