Skip to content

Commit

Permalink
PR review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nderkim committed Oct 20, 2022
1 parent 2cf3aa2 commit 4a427ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/BasicSingle.tsx
Expand Up @@ -11,8 +11,8 @@ const Checkbox = ({ children, ...props }: JSX.IntrinsicElements['input']) => (
);

export default () => {
const [isClearable, setIsClearable] = useState(false);
const [isSearchable, setIsSearchable] = useState(false);
const [isClearable, setIsClearable] = useState(true);
const [isSearchable, setIsSearchable] = useState(true);
const [isDisabled, setIsDisabled] = useState(false);
const [isLoading, setIsLoading] = useState(false);
const [isRtl, setIsRtl] = useState(false);
Expand Down

0 comments on commit 4a427ac

Please sign in to comment.