import React from 'react'; import cn from 'classnames'; import { Container, Text, Checkbox } from './styled'; type DefaultOptionPropTypes = { isDefault: boolean; onChange: (state: boolean) => void; className: string; }; const DefaultOption = ({ isDefault, onChange, className }: DefaultOptionPropTypes) => ( This will be the view this page will always open on ); export default DefaultOption;