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/ui/MapEditor.tsx

14 lines
186 B
TypeScript

import React from "react";
export interface MapEditorLayer {
type: "MapEditor";
}
export default function MapEditorUI() {
return (
<div>
<p>HEY HEY</p>
</div>
);
}