DefinitelyTyped/types/react-icons/react-icons-tests.tsx
2017-07-25 10:34:23 -07:00

10 lines
257 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 {
render() {
return <h3> Lets go for a <FaBeer /><FaExclamation />? </h3>;
}
}