9 lines
114 B
TypeScript
9 lines
114 B
TypeScript
import React from "react";
|
|
|
|
function GamesPage() {
|
|
return (
|
|
<div>Games</div>);
|
|
}
|
|
|
|
export default GamesPage;
|