There was an error while loading. Please reload this page.
1 parent c87b377 commit 83253b8Copy full SHA for 83253b8
playground/samples/index.js
@@ -11,6 +11,7 @@ import large from "./large";
11
import date from "./date";
12
import validation from "./validation";
13
import files from "./files";
14
+import single from "./single";
15
16
export const samples = {
17
Simple: simple,
@@ -26,4 +27,5 @@ export const samples = {
26
27
"Date & time": date,
28
Validation: validation,
29
Files: files,
30
+ Single: single
31
};
playground/samples/single.js
@@ -0,0 +1,7 @@
1
+module.exports = {
2
+ schema: {
3
+ title: "A single-field form",
4
+ type: "string",
5
+ },
6
+ formData: "initial value"
7
+};
0 commit comments