import React, { memo } from 'react'; import styles from './index.less'; import { ITextConfig } from './schema'; const Text = memo((props: ITextConfig) => { const { align, text, fontSize, color, lineHeight } = props; return (
{text}
); }); export default Text;