FPSMS-frontend
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ProductionProcessWrapper.tsx 438 B

123456789101112131415
  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;