FPSMS-frontend
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

15 rader
438 B

  1. import ProductionProcess from "./ProductionProcess";
  2. import ProductionProcessLoading from "./ProductionProcessLoading";
  3. interface SubComponents {
  4. Loading: typeof ProductionProcessLoading;
  5. }
  6. const ProductionProcessWrapper: React.FC & SubComponents = () => {
  7. console.log("Testing")
  8. return <ProductionProcess />;
  9. };
  10. ProductionProcessWrapper.Loading = ProductionProcessLoading;
  11. export default ProductionProcessWrapper;