import React, { memo } from 'react' import { motion } from 'framer-motion' const ChromaticText = ({ text, offset }) => { return (
{text} {text} {text}
) } export default memo(ChromaticText)