10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import type { Component } from 'solid-js';
|
|
|
|
const App: Component = () => {
|
|
return (
|
|
<p class="text-4xl text-green-700 text-center py-20">Hello tailwind!</p>
|
|
);
|
|
};
|
|
|
|
export default App;
|