From a6509cf3f314b315377e865d50eff97fff3090aa Mon Sep 17 00:00:00 2001 From: Travis Tidwell Date: Thu, 8 Dec 2022 15:45:41 -0600 Subject: [PATCH] Update Readme.md --- Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.