Skip to content
Snippets Groups Projects
Commit 88419705 authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Fix Flow type annotations

parent cffd53c7
No related branches found
No related tags found
No related merge requests found
......@@ -84,13 +84,14 @@ function getFilterTitle(filter) {
return prefix + desc;
}
type Props = {
setValue: (value: ?string) => void,
onClose: () => void
};
export default class DateAllOptionsWidget extends Component<*, Props, *> {
type State = { filter: FieldFilter };
export default class DateAllOptionsWidget extends Component<*, Props, State> {
state: State;
constructor(props: Props) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment