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.
 
 

15 lines
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;