1.0.2 • Published 5 years ago

webiny-app-typeform v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

webiny-app-typeform

npm.io npm.io code style: prettier PRs Welcome

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.