New performer data structure
This commit is contained in:
13
pages/performers/[id].tsx
Normal file
13
pages/performers/[id].tsx
Normal 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;
|
||||
Reference in New Issue
Block a user