mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
267 B
TypeScript
12 lines
267 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>;
|
|
}
|
|
}
|
|
|
|
|