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