New performer data structure

This commit is contained in:
2024-05-18 20:45:41 +03:00
parent 47129aaa0d
commit 7551bfd939
11 changed files with 80 additions and 68 deletions

13
pages/performers/[id].tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { useRouter } from 'next/router'
import shared from '../styles/Shared.module.scss';
import styles from '../styles/Performer.module.scss';
const Performer = () => {
const router = useRouter()
return (
<div>{router.query.name}</div>
);
}
export default Performer;