This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
odyfive/src/game/scenes/TitleScreen.tsx

11 lines
215 B
TypeScript

import React, { Fragment } from "react";
import MenuBackground from "./backgrounds/MenuBackground";
export default function TitleScreen() {
return (
<Fragment>
<MenuBackground />
</Fragment>
);
}