FPSMS-frontend
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

ImportTestingWrapper.tsx 382 B

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