Basic loop

This commit is contained in:
Melvin Valster
2019-07-12 09:58:15 +02:00
parent 426f6c14fd
commit 85f9208b4a
15 changed files with 767 additions and 64 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
interface Props {
}
export const ClassPicker: React.FC<Props> = () => {
return (
<div className="">
Pick your class
</div>
)
}