blank-theme-with-daisy

This commit is contained in:
tangly1024
2023-06-30 23:24:55 +08:00
parent 8103e23aac
commit aac5eac0fc
18 changed files with 326 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
const DropDownMenu = () => {
return <details className="dropdown mb-32">
<summary className="m-1 btn">open or close</summary>
<ul className="p-2 shadow menu dropdown-content z-[1] bg-base-100 rounded-box w-52">
<li><a>Item 1</a></li>
<li><a>Item 2</a></li>
</ul>
</details>
}
export default DropDownMenu