0.1.58 • Published 1 year ago

ketikin v0.1.58

Weekly downloads
8
License
MIT
Repository
github
Last release
1 year ago

Ketikin

npm.io

Ketikin means "Type it for me" in Bahasa Indonesia. A react component that types for you.

Bahasa Indonesia

buat biar ngetik2 sendiri gitu.

Install

npm install ketikin

Usage

import Ketikin from 'ketikin';

<Ketikin text="Hello, World." interval={100}>
  {value => <h1>{value}</h1>}
</Ketikin>

Props

type Props = {
  children: (value: string) => ReactElement;
  text: string;
  texts?: string[];
  interval?: number;
};

license