revite/src/pages/home/Home.tsx

10 lines
165 B
TypeScript
Raw Normal View History

2021-06-19 07:34:53 -04:00
import PaintCounter from "../../lib/PaintCounter";
export default function Home() {
return (
2021-06-19 13:46:05 -04:00
<div>
2021-06-19 07:34:53 -04:00
<PaintCounter />
</div>
);
}