mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
38 lines
667 B
TypeScript
38 lines
667 B
TypeScript
|
// @filename: file.tsx
|
||
|
// @jsx: preserve
|
||
|
// @noLib: true
|
||
|
// @skipLibCheck: true
|
||
|
// @libFiles: react.d.ts,lib.d.ts
|
||
|
|
||
|
import React = require('react');
|
||
|
|
||
|
interface ButtonProp {
|
||
|
a: number,
|
||
|
b: string,
|
||
|
children: Button;
|
||
|
}
|
||
|
|
||
|
class Button extends React.Component<ButtonProp, any> {
|
||
|
render() {
|
||
|
let condition: boolean;
|
||
|
if (condition) {
|
||
|
return <InnerButton {...this.props} />
|
||
|
}
|
||
|
else {
|
||
|
return (<InnerButton {...this.props} >
|
||
|
<div>Hello World</div>
|
||
|
</InnerButton>);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
interface InnerButtonProp {
|
||
|
a: number
|
||
|
}
|
||
|
|
||
|
class InnerButton extends React.Component<InnerButtonProp, any> {
|
||
|
render() {
|
||
|
return (<button>Hello</button>);
|
||
|
}
|
||
|
}
|