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