webiny-app-typeform
v1.0.2
Published
Enables embedding TypeForm forms via the Webiny CMS page editor.
Downloads
2
Readme
webiny-app-typeform
Adds TypeForm CMS element that enables you to embed TypeForm forms in your pages.
Install
npm install --save webiny-app-typeform
Or if you prefer yarn:
yarn add webiny-app-typeform
Setup
To setup, you must register a set of plugins.
Admin
import typeformPlugins from "webiny-app-typeform/admin"
import { registerPlugins } from "webiny-plugins";
registerPlugins(typeformPlugins);
Registers Typeform element in CMS editor, which will enable you to embed forms in your pages. The element will be registered under the "Form" element category.
Site
import typeformPlugins from "webiny-app-typeform/render"
import { registerPlugins } from "webiny-plugins";
registerPlugins(typeformPlugins);
Enables Typeform form render in your public website.