FPSMS-frontend
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
438 B

  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;