A Solid start to Solid.js
import { createSignal } from 'solid-js';
import type { Component } from 'solid-js';
const App: Component = () => {
const [count, setCount] = createSignal(0)
const handleCounter = (type: 'INC' | 'DEC') => {
if(type === 'INC'){
setCoun...
adibhasib.hashnode.dev5 min read