mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
24 lines
461 B
TypeScript
24 lines
461 B
TypeScript
// @filename: file.tsx
|
|
// @jsx: preserve
|
|
// @module: amd
|
|
// @noLib: true
|
|
// @skipLibCheck: true
|
|
// @libFiles: react.d.ts,lib.d.ts
|
|
|
|
import React = require('react');
|
|
|
|
const Foo = (props: any) => <div/>;
|
|
// Should be OK
|
|
const foo = <Foo />;
|
|
|
|
|
|
// Should be OK
|
|
var MainMenu: React.StatelessComponent<{}> = (props) => (<div>
|
|
<h3>Main Menu</h3>
|
|
</div>);
|
|
|
|
var App: React.StatelessComponent<{ children }> = ({children}) => (
|
|
<div >
|
|
<MainMenu/>
|
|
</div>
|
|
); |