mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-08 05:22:16 -05:00
16 lines
291 B
React
16 lines
291 B
React
|
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;
|