You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/src/components/DevContainer.tsx

10 lines
301 B
TypeScript

import React, { Fragment } from 'react';
import { isDevelopment } from 'tailchat-shared';
export const DevContainer: React.FC = React.memo((props) => {
return isDevelopment ? <Fragment>{props.children}</Fragment> : null;
});
DevContainer.displayName = 'DevContainer';
export default DevContainer;