poe2-loot-filter-solid/src/App.tsx
2024-12-31 16:22:45 +09:00

12 lines
161 B
TypeScript

import type { Component } from 'solid-js';
const App: Component = () => {
return (
<div class="flex">
hello
</div>
);
};
export default App;