UNPKG

frc-ui

Version:

React Web UI

11 lines (10 loc) 276 B
import React from 'react'; import { EmojiType } from './types'; interface EmojiProps { onChange?: Function; } declare class EmojiOne extends React.PureComponent<EmojiProps> { handleClick: (emo: EmojiType) => void; render(): JSX.Element; } export default EmojiOne;