1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 13:00:36 -05:00
denoland-deno/foo.tsx

10 lines
133 B
TypeScript
Raw Normal View History

2024-12-03 13:45:44 +01:00
const a = <div style={{}} />;
const b = <div style="foo" />;
const c: Foo<number> = {
node: 2,
};
interface Foo<T> {
node: T;
}