initial commit

This commit is contained in:
cupcakearmy
2019-09-26 21:13:27 +02:00
parent 00c6efd73a
commit 0c19233b4d
7 changed files with 239 additions and 0 deletions

27
test/index.html Normal file
View File

@@ -0,0 +1,27 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Form Hero</title>
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css" />
<style>
body {
padding: 1em
}
input,
select {
display: block;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./test.tsx"></script>
</body>
</html>