react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
18 lines (14 loc) • 412 B
JavaScript
// ** Layout Import
import BlankLayout from '~/@core/layouts/BlankLayout'
// ** Demo Components Imports
import PrintPage from '~/views/apps/invoice/print/PrintPage'
const InvoicePrint = () => {
return <PrintPage id='4987' />
}
InvoicePrint.getLayout = page => <BlankLayout>{page}</BlankLayout>
InvoicePrint.setConfig = () => {
return {
mode: 'light'
}
}
export default InvoicePrint