import React from 'react';
import { Switch, FormControl } from 'native-base';

export const Example = () => {
  return (
    <FormControl.Label>
      <Switch aria-label="switch" />
    </FormControl.Label>
  );
};
