+
+ {JSON.stringify(thing, null, 2)}
+
+
+
+}
\ No newline at end of file
diff --git a/remix/app/components/Thingtime/ThingtimeDemo.tsx b/remix/app/components/Thingtime/ThingtimeDemo.tsx
new file mode 100644
index 0000000..48af325
--- /dev/null
+++ b/remix/app/components/Thingtime/ThingtimeDemo.tsx
@@ -0,0 +1,20 @@
+import React from "react"
+import { Thingtime } from "./Thingtime"
+
+export const ThingtimeDemo = props => {
+
+ const thing = {
+ name: 'thing',
+ description: 'thing description',
+ image: 'thing image',
+ price: 100,
+ quantity: 1,
+ id: 1
+ }
+
+ const [demoThing, setDemoThing] = React.useState(thing)
+
+
+ return