1
0
Fork 0
freesewing/sites/shared/components/wrappers/production.mjs
2023-08-30 17:43:27 +02:00

4 lines
171 B
JavaScript

import { isProduction } from 'shared/freesewing.config.mjs'
export const ProductionWrapper = ({ only = false, not = true, children }) =>
!not || only ? children : null