From c7f4c3f525e7fabc832963f6f696e862e56e777c Mon Sep 17 00:00:00 2001 From: Andre Date: Mon, 12 Feb 2024 21:58:12 -0500 Subject: [PATCH] Link tag --- frontend/src/app/buying/page.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/buying/page.js b/frontend/src/app/buying/page.js index 922167e..f140099 100644 --- a/frontend/src/app/buying/page.js +++ b/frontend/src/app/buying/page.js @@ -1,6 +1,7 @@ 'use client'; import { useState } from 'react'; import { Form } from '@/components'; +import Link from 'next/link'; export default function selling() { const [data, setData] = useState(''); @@ -23,7 +24,7 @@ export default function selling() {
{data.info.map((item, index) => (
- {item.title} + {item.title}

Price: ${item.price}

))}