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