// @flow import React from 'react'; import classnames from 'classnames'; type Props = { active: boolean, onPress?: () => void, } export const Switch = ({ active, onPress = () => {} }: Props) => (
);