mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-11 08:11:19 -05:00
15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
import React from 'react';
|
|
import {useParams} from 'react-router-dom';
|
|
|
|
const StudioComments = () => {
|
|
const {studioId} = useParams();
|
|
|
|
return (
|
|
<div>
|
|
<h2>Comments</h2>
|
|
<p>Studio {studioId}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default StudioComments;
|