12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
import WithAuthMiddleware from "@/middlewares/WithAuth";
|
|
import Print from "@/components/layouts/Print";
|
|
|
|
const PrintLayout = (props) => {
|
|
return (
|
|
<WithAuthMiddleware>
|
|
<Print {...props}/>
|
|
</WithAuthMiddleware>
|
|
)
|
|
}
|
|
|
|
export default PrintLayout |