JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

function createSignal(initialValue) {
	const get = () => {
  	
  }

	return [get, set];
}

const [value, setValue] = createSignal(0);

setInterval()