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

4 lines
226 B
JavaScript

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