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**.

10 lines (9 loc) 382 B
import { Editor } from '@tiptap/react'; import { toggleVariants } from '../../../components/ui/toggle'; import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; interface SectionThreeProps extends VariantProps<typeof toggleVariants> { editor: Editor; } export declare const SectionThree: React.FC<SectionThreeProps>; export default SectionThree;