fixed package.json and a rfew othr things

This commit is contained in:
2025-02-03 12:57:15 -05:00
parent ffb42ba2d1
commit f614b064a0
8 changed files with 205 additions and 130 deletions

View File

@@ -0,0 +1,8 @@
"use client";
const ButtonProducts = ( props:any ) => {
const category = props.category;
return (
<button onClick={async () => { alert(category); return false;}} >{props.category}</button>
)
}
export default ButtonProducts;