add basic repl

This commit is contained in:
Felix Roos 2022-02-04 13:32:42 +01:00
parent 83d06ec2af
commit 71a3bdfeac
16 changed files with 15175 additions and 0 deletions

3
repl/src/cx.ts Normal file
View file

@ -0,0 +1,3 @@
export default function cx(...classes: Array<string | undefined>) {
return classes.filter(Boolean).join(' ');
}