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.

ProductionProcessWrapper.tsx 568 B

6 månader sedan
6 månader sedan
123456789101112131415161718192021222324
  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;