Add Donut component that can render server side (if that ever actually works)

This commit is contained in:
2024-02-22 14:57:30 +00:00
parent 17edc05ec4
commit e67e01fd0a
7 changed files with 175 additions and 20 deletions
+7
View File
@@ -0,0 +1,7 @@
'use client';
import {Tooltip} from "react-tooltip";
export default function DonutTooltip() {
return <Tooltip id="donut-tooltip"/>
}