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.
 
 
 

24 lines
568 B

  1. import { processData } from "./dummyData";
  2. import ProductionProcess from "./ProductionProcess";
  3. import ProductionProcessLoading from "./ProductionProcessLoading";
  4. interface SubComponents {
  5. Loading: typeof ProductionProcessLoading;
  6. }
  7. const ProductionProcessWrapper: React.FC & SubComponents = async () => {
  8. return (
  9. <>
  10. <h3>p</h3>
  11. <ProductionProcess
  12. processes={processData}
  13. />
  14. </>
  15. )
  16. };
  17. ProductionProcessWrapper.Loading = ProductionProcessLoading;
  18. export default ProductionProcessWrapper;