@tycoonsystems/tycoon-modules
Version:
www.tv.tycoon.systems/documentation
17 lines (12 loc) • 596 B
JavaScript
/* 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