Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit 1470a7a

Browse files
author
Dominik Sumer
committed
corrected imports in examples
1 parent c844e61 commit 1470a7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Login/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Form from '@cat-react/form';
2+
import {Form} from '@cat-react/form';
33
import BasicInput from '../components/BasicInput';
44
import autoBind from 'react-autobind';
55

examples/Registration/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Form from '@cat-react/form';
2+
import {Form} from '@cat-react/form';
33
import BasicInput from '../components/BasicInput';
44
import autoBind from 'react-autobind';
55

examples/components/BasicInput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import Input from '@cat-react/form'
2+
import {Input} from '@cat-react/form'
33

44
@Input
55
export default class BasicInput extends React.Component {

0 commit comments

Comments
 (0)