UNPKG

@tycoonsystems/tycoon-modules

Version:
17 lines (12 loc) 596 B
/* Avoid editing this file. Manipulate customModules/middleware/Middleware.js for middleware logic. If files missing run node init_app.js */ import React from 'react' import '../styles/globals.scss' // Place style import declarations in /styles/styles.scss and actual style css files under /styles/appstyles/ import Internal from "@tycoonsystems/tycoon-modules/internal/internal.js" function MyApp({ Component, pageProps }) { return ( <div> <Internal {...pageProps} _MasterPageComponent={Component} /> {/* Application Start */} </div> ) } export default MyApp