0.1.58 • Published 3 years ago
ketikin v0.1.58
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 ketikinUsage
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;
};