mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
import { useState } from "react";
|
|
import { PMTiles } from "../../js";
|
|
import { styled } from "./stitches.config";
|
|
|
|
function Inspector(props:{file:string}) {
|
|
return (
|
|
<>
|
|
foo
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Inspector;
|