mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
30 lines
763 B
TypeScript
30 lines
763 B
TypeScript
// @jsx: react
|
|
// @target: es2015,es2018,esnext
|
|
// @filename: test.tsx
|
|
|
|
declare const React: any;
|
|
|
|
export function T1(a: any) {
|
|
return <div className={"T1"} { ...a }>T1</div>;
|
|
}
|
|
|
|
export function T2(a: any, b: any) {
|
|
return <div className={"T2"} { ...a } { ...b }>T2</div>;
|
|
}
|
|
|
|
export function T3(a: any, b: any) {
|
|
return <div { ...a } className={"T3"} { ...b }>T3</div>;
|
|
}
|
|
|
|
export function T4(a: any, b: any) {
|
|
return <div className={"T4"} { ...{ ...a, ...b } }>T4</div>;
|
|
}
|
|
|
|
export function T5(a: any, b: any, c: any, d: any) {
|
|
return <div className={"T5"} { ...{ ...a, ...b, ...{ c, d } } }>T5</div>;
|
|
}
|
|
|
|
export function T6(a: any, b: any, c: any, d: any) {
|
|
return <div className={"T6"} { ...{ ...a, ...b, ...{ ...c, ...d } } }>T6</div>;
|
|
}
|