A react typewriter effect with beautiful animations and emoji support
npm install magic-typewriterA typewriter for react that includes:
- Emoji support (via the amazing Grapheme Splitter)
- Smooth scrolling with CSS opacity
- No multi line snapping
Add magic typewriter to your React project with npm
```
npm install --save magic-typewriter
Include magic typewriter and drop into any component
`
import { MagicTypewriter } from 'magic-typewriter';
function App() {
return (
Options
There are several parameters you can use to customise magic typewriter
`
message={"Hello there 👋\nHow are you doing today?"}
splitLines={true}
splitString={/\n/}
onComplete={() => console.log('Done')}
isLoading={false}
charDelay={30}
lineDelay={500}
>
``