implement
Implement/Introduction/Your first component

Welcome to the implementjs tutorial playground!

We have taken inspiration from the Svelte tutorial playground to help you learn implement in an interactive way.

Let's start with a little tour.

On the right you will have the code editor you can edit the code to see the preview (below the code editor) change.

Why don't you try that now and change the text in the H1 to be "Hello, Implement"!

export default function App() {
	return H1("Hello, Implement!");
}

Once you're ready to move on, click the next button in the bottom right corner of this panel, see you there!

index.ts
import { Div, H1 } from "@implementjs/core";

export default function App() {
	return H1("Welcome!");
}
Preview