import React from 'react'; import classNames from 'classnames'; interface Props { color?: string; } export class TypingAnimation extends React.Component { public render() { const { color } = this.props; return (
); } }