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