UNPKG

rvx

Version:

A signal based rendering library

9 lines (7 loc) 205 B
import { Content } from "../types.js"; /** * The jsx fragment component that returns it's children as is. */ export function Fragment(props: { children?: Content }): Content { return props.children; }