UNPKG

@elrayes/dynamic-form-builder

Version:

A flexible and customizable dynamic form builder with theming support

14 lines (13 loc) 513 B
/** * Dynamic Form Builder - Main Entry Point * * This file exports all the components of the Dynamic Form Builder package. */ import $ from 'jquery'; export { $ }; export { default as DynamicForm } from './dynamic-form-builder'; export { default as Theme } from './themes/Theme'; export { default as ThemeManager } from './themes/ThemeManager'; export { default as Bootstrap5Theme } from './themes/Bootstrap5Theme'; export { default as TailwindTheme } from './themes/TailwindTheme'; export * from './types';