fix(core): tsc errors

This commit is contained in:
Rémi DOREAU
2020-09-15 19:15:21 +02:00
parent 240c09159c
commit 3db5fc94d9
3 changed files with 3 additions and 4 deletions
@@ -66,7 +66,7 @@ export default {
export const Default = () => (
<CheckboxTree
onChange={el => {}}
onChange={() => {}}
label="default"
subCategories={CHECKBOX_TREE_ITEMS}
/>
@@ -39,7 +39,7 @@ const SELECT_ITEMS = [
export const Default = () => (
<Select
onChange={el => {}}
onChange={() => {}}
placeholder="All results"
label="Default"
items={SELECT_ITEMS}
@@ -52,6 +52,6 @@ export const Multiple = () => (
label="Multiple"
items={SELECT_ITEMS}
multiple
onChange={el => {}}
onChange={() => {}}
/>
);
@@ -35,7 +35,6 @@ import {
import ClosedDropdown from './static/ClosedDropdown';
import OpenedDropdown from './static/OpenedDropdown';
import { idea } from 'react-syntax-highlighter/dist/cjs/styles/hljs';
const BootstrapInput = withStyles((theme: Theme) =>
createStyles({