diff options
Diffstat (limited to 'src/app/info/buttons.js')
| -rw-r--r-- | src/app/info/buttons.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/app/info/buttons.js b/src/app/info/buttons.js index 8f041a8..6244a2e 100644 --- a/src/app/info/buttons.js +++ b/src/app/info/buttons.js @@ -1,13 +1,10 @@ -"use client" +"use client"; import Link from "next/link"; export default function CreateButton({ a }) { - return ( <Link href={`/video/${a.id}`}> - <button className="dramaButton"> - {a.number} - </button> + <button className="dramaButton">{a.number}</button> </Link> ); -}
\ No newline at end of file +} |