aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/wrapper/index.tsx
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-07 08:03:45 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-07 08:03:45 +0200
commit31f8ada876b3aec45ffffcf82079eaacb69349fc (patch)
tree9f5752b7bbc42c9b5b3c2b02517732b3a2e5b868 /packages/forms/src/wrapper/index.tsx
parentchore: simplify babel configuration (#2029) (diff)
downloadferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.tar.gz
ferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.tar.zst
ferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.zip
chore: upgrade react to latest (#2030)
Diffstat (limited to 'packages/forms/src/wrapper/index.tsx')
-rw-r--r--packages/forms/src/wrapper/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/forms/src/wrapper/index.tsx b/packages/forms/src/wrapper/index.tsx
index 3ae551e2c..ffcd6fe0b 100644
--- a/packages/forms/src/wrapper/index.tsx
+++ b/packages/forms/src/wrapper/index.tsx
@@ -1,10 +1,10 @@
1import classnames from 'classnames'; 1import classnames from 'classnames';
2import React, { Component } from 'react'; 2import { Component, ReactNode } from 'react';
3import injectStyle from 'react-jss'; 3import injectStyle from 'react-jss';
4import { IWithStyle } from '../typings/generic'; 4import { IWithStyle } from '../typings/generic';
5 5
6interface IProps extends IWithStyle { 6interface IProps extends IWithStyle {
7 children: React.ReactNode; 7 children: ReactNode;
8 className?: string; 8 className?: string;
9 identifier: string; 9 identifier: string;
10 noMargin?: boolean; 10 noMargin?: boolean;