UNPKG

editcrafter

Version:

To use **EditCrafter** with Tailwind CSS, you need to set up Tailwind CSS in your project. Here's a step-by-step guide to help you integrate Tailwind CSS and customize your `tailwind.config.js` file for use with **EditCrafter**.

12 lines (11 loc) 453 B
import { toggleVariants } from '../../../components/ui/toggle'; import { Level } from '@tiptap/extension-heading'; import { Editor } from '@tiptap/react'; import { VariantProps } from 'class-variance-authority'; import * as React from "react"; interface SectionOneProps extends VariantProps<typeof toggleVariants> { editor: Editor; activeLevels?: Level[]; } export declare const SectionOne: React.FC<SectionOneProps>; export default SectionOne;