mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 13:00:36 -05:00
10 lines
133 B
TypeScript
10 lines
133 B
TypeScript
|
const a = <div style={{}} />;
|
||
|
const b = <div style="foo" />;
|
||
|
const c: Foo<number> = {
|
||
|
node: 2,
|
||
|
};
|
||
|
|
||
|
interface Foo<T> {
|
||
|
node: T;
|
||
|
}
|