///
import { assertEquals } from 'https://deno.land/std/testing/asserts.ts';
import { React } from '../mod.ts';
const View = () => {
return
;
};
if (import.meta.main) {
().render().then(console.log);
} else {
Deno.test('render with array', async () => {
assertEquals(
await ().render(),
'hello world
',
);
});
}