mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import * as React from 'react';
|
|
import FaBeer from 'react-icons/fa/beer';
|
|
import {FaExclamation} from 'react-icons/fa';
|
|
|
|
class Question extends React.Component<any, any> {
|
|
render() {
|
|
return <h3> Lets go for a <FaBeer /><FaExclamation />? </h3>;
|
|
}
|
|
}
|