DefinitelyTyped/react-icons/react-icons-tests.tsx
Alexandre Pare cdd6a34b88 react-icons
2017-01-26 17:23:39 -05:00

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>;
}
}