ketikin

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

Usage no npm install needed!

<script type="module">
  import ketikin from 'https://cdn.skypack.dev/ketikin';
</script>

README

Ketikin

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