1
0
Fork 0
freesewing/sites/shared/components/wrappers/production.mjs

5 lines
171 B
JavaScript
Raw Normal View History

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