1 2 3 4 5 6 7 8 9
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;