1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-18 05:48:27 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/util/if.tsx
2021-01-04 00:20:46 -07:00

6 lines
161 B
TypeScript

import type { TIf } from './types';
export const If: React.FC<TIf> = (props: TIf) => {
const { c, children } = props;
return c ? <>{children}</> : null;
};