8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
|
const ServerIdPage = () => {
|
||
|
return (
|
||
|
<div>
|
||
|
Server ID Page
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
export default ServerIdPage;
|