add alert

This commit is contained in:
Flatlogic Bot 2025-04-04 20:22:07 +00:00
parent c99c5c6c44
commit 2fbb03957e
3 changed files with 7 additions and 0 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

View File

@ -0,0 +1 @@
{}

View File

@ -32,6 +32,7 @@ export default function AsideMenuList({
/> />
); );
})} })}
<li onClick={() => alert('Hello!')} className="cursor-pointer px-2 py-1 hover:bg-gray-200">New Item</li>
</ul> </ul>
); );
} }