mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import type { TIf } from './types';
|
|
|
|
export const If = (props: TIf) => {
|
|
const { c, render, children, ...rest } = props;
|
|
return c ? (render ? render(rest) : children) : null;
|
|
};
|