Skip to content

Commit da42a65

Browse files
authored
Update README.md
1 parent 3cc9f00 commit da42a65

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ To see an example application of how to implement all the components and modules
99

1010
### npm
1111

12-
`react-formio` can be used on the server, or bundled for the client using an
12+
`@formio/react` can be used on the server, or bundled for the client using an
1313
npm-compatible packaging system such as [Browserify](http://browserify.org/) or
1414
[webpack](http://webpack.github.io/).
1515

1616
```
17-
npm install react-formio --save
17+
npm install @formio/react --save
1818
npm install formiojs --save // Install formiojs since it is a peerDependency
1919
```
2020

@@ -57,7 +57,7 @@ Give `Form` a `src` property and render:
5757
```javascript
5858
import React from 'react';
5959
import ReactDOM from 'react-dom';
60-
import {Form} from 'react-formio';
60+
import {Form} from '@formio/react';
6161
```
6262

6363
```javascript
@@ -95,7 +95,7 @@ Please note that the FormBuilder component does not load and save from/to a url.
9595
```javascript
9696
import React from 'react';
9797
import ReactDOM from 'react-dom';
98-
import {FormBuilder} from 'react-formio';
98+
import {FormBuilder} from '@formio/react';
9999
```
100100

101101
```javascript

0 commit comments

Comments
 (0)