start useState

This commit is contained in:
Joshua Seigler 2022-10-09 21:28:54 -04:00
parent 98ab1bce45
commit 2a4cd44504
8 changed files with 168 additions and 18 deletions

3
src/strategies/index.ts Normal file
View file

@ -0,0 +1,3 @@
import { UseState } from "./useState";
export const strategies = [{ name: 'useState', component: UseState }]