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.
|
- import ProductionProcess from "./ProductionProcess";
- import ProductionProcessLoading from "./ProductionProcessLoading";
-
- interface SubComponents {
- Loading: typeof ProductionProcessLoading;
- }
-
- const ProductionProcessWrapper: React.FC & SubComponents = () => {
- console.log("Testing")
- return <ProductionProcess />;
- };
-
- ProductionProcessWrapper.Loading = ProductionProcessLoading;
-
- export default ProductionProcessWrapper;
|