moved components to TypeScript

This commit is contained in:
muerwre 2019-02-12 16:20:31 +07:00
parent 85b8860862
commit 0a01c91271
54 changed files with 2771 additions and 5134 deletions

14
src/components/Switch.tsx Normal file
View file

@ -0,0 +1,14 @@
// @flow
import * as React from 'react';
import classnames from 'classnames';
type Props = {
active: boolean,
onPress?: () => void,
}
export const Switch = ({ active, onPress = () => {} }: Props) => (
<div
className={classnames('switch', { active })}
onMouseDown={onPress}
/>
);