Last active
June 26, 2021 10:22
-
-
Save Cerwyn/2403a95fbf37231b30842c443932da71 to your computer and use it in GitHub Desktop.
preact
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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