blob: 16262b3c2d2916ee104ea29a6e2fdb841128301f (
plain)
| 1
2
3
4
5
6
7
8
 | import { FunctionalComponent, h as render } from 'preact';
export function createExample<Props>(Component: FunctionalComponent<Props>, props: Partial<Props>) {
  const r = (args: any) => render(Component, args)
  r.args = props
  return r
}
 |