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

5 lines
226 B
JavaScript
Raw Normal View History

import { isProduction } from 'shared/freesewing.config.mjs'
export const NotInProduction = ({ children }) => (isProduction ? null : children)
export const OnlyInProduction = ({ children }) => (isProduction ? children : null)