diff --git a/Readme.md b/Readme.md index 495418f1..16429cea 100644 --- a/Readme.md +++ b/Readme.md @@ -4,12 +4,12 @@ This library is the core rendering engine behind the Form.io platform. It is a t ### Usage To use this library, you will first need to install it into your own application. - npm install --save @formio/base + npm install --save @formio/core Next, you can create a new component as follows. ```js -import { Components } from '@formio/base'; +import { Components } from '@formio/core'; Components.addComponent({ type: 'h3', template: (ctx) => `

${ctx.component.header}

` @@ -59,4 +59,4 @@ FormioCore.render(document.getElementById('data-table'), { }); ``` -See https://formio.github.io/core for more examples of how to use this library. \ No newline at end of file +See https://formio.github.io/core for more examples of how to use this library.