Skip to content

Instantly share code, notes, and snippets.

@Cerwyn
Last active June 26, 2021 10:22
Show Gist options
  • Save Cerwyn/2403a95fbf37231b30842c443932da71 to your computer and use it in GitHub Desktop.
Save Cerwyn/2403a95fbf37231b30842c443932da71 to your computer and use it in GitHub Desktop.
preact
import { html } from 'htm/preact';
import style from './style.css';
import { FunctionalComponent } from 'preact';
const Home: FunctionalComponent = () => {
return html`
<div class="${style.home}">
<h1>Home</h1>
<p>This is the Home component.</p>
</div>
`;
}
export default Home;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment