UNPKG

rvx

Version:

A signal based rendering library

8 lines (6 loc) 166 B
/** * The jsx fragment component that returns it's children as is. */ export function Fragment(props: { children?: unknown }): unknown { return props.children; }