mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
20 lines
309 B
TypeScript
20 lines
309 B
TypeScript
'use client'
|
|
|
|
interface ReusableSectionProps {
|
|
section: any
|
|
}
|
|
|
|
const ReusableSection = ({ section }: ReusableSectionProps) => {
|
|
console.log(section)
|
|
|
|
return (
|
|
<div className="px-4 lg:px-8 2xl:px-16">
|
|
<div>
|
|
Reusable section
|
|
</div>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ReusableSection |