15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
"use client";
|
|
import React from 'react'
|
|
|
|
const AddToCart = () => {
|
|
return (
|
|
<div>
|
|
{/* <button onClick={() => console.log('Click')}>Add to Cart</button> normal button */}
|
|
|
|
{/* Button using DaisyUi */}
|
|
<button className="btn btn-primary" onClick={() => console.log('Click')}>Add to Cart</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AddToCart |