Some checks failed
Build Nginx-based docker image / build-static-assets (push) Has been cancelled
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m20s
Add copyright notice / copyright_notice (pull_request) Successful in 1m28s
Playwright Tests / test (pull_request) Successful in 6m58s
17 lines
360 B
TypeScript
17 lines
360 B
TypeScript
/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/
|
|
|
|
'use client'
|
|
|
|
import Tiptap from '../../../components/Tiptap'
|
|
|
|
export default function Page() {
|
|
|
|
return (
|
|
<div className="border rounded-lg p-4">
|
|
<Tiptap
|
|
content="<p>Hello World! 🌎️</p>"
|
|
onUpdate={(newContent) => console.log(newContent)}
|
|
/>
|
|
</div>
|
|
);
|
|
} |