https://github.com/taystack/use-typed-text
React 16.8 Hook. Make it look like someone is typing
https://github.com/taystack/use-typed-text
Last synced: 2 months ago
JSON representation
React 16.8 Hook. Make it look like someone is typing
- Host: GitHub
- URL: https://github.com/taystack/use-typed-text
- Owner: taystack
- License: mit
- Created: 2020-02-25T03:49:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:28:35.000Z (almost 3 years ago)
- Last Synced: 2025-09-19T11:11:44.226Z (3 months ago)
- Language: JavaScript
- Size: 3.29 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @taystack/use-typed-text
> React 16.8 hook to make it look like someone is typing
 [](https://www.npmjs.com/package/@taystack/use-typed-text) [](https://standardjs.com) [](https://codecov.io/gh/taystack/use-leet)
## [Live Demo](https://taystack.github.io/use-typed-text)
## Install
```bash
npm install --save @taystack/use-typed-text
```
## Usage
```jsx
import React from "react"
import { useTypedText } from "@taystack/use-typed-text"
const Example = () => {
const [text, setText] = useTypedText();
useEffect(() => {
setText("hello world");
}, []);
return (
{text});
}
```
## License
MIT © [taystack](https://github.com/taystack)
---
This hook is created using [create-react-hook](https://github.com/hermanya/create-react-hook).