1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
denoland-deno/foo.tsx
2024-12-03 13:45:44 +01:00

9 lines
133 B
TypeScript

const a = <div style={{}} />;
const b = <div style="foo" />;
const c: Foo<number> = {
node: 2,
};
interface Foo<T> {
node: T;
}