diff --git a/client/src/components/invstats.jsx b/client/src/components/invstats.jsx new file mode 100755 index 00000000..6bb81263 --- /dev/null +++ b/client/src/components/invstats.jsx @@ -0,0 +1,56 @@ +const preact = require('preact'); + +// components all the way down + +function InvStats() { + return ( +
+
+
+
+

Helm Slot

+
+
+

Body Armor

+
+
+

Gloves

+
+
+

Boots

+
+
+
+
+
+ +
+

Cryp#XYZ

+

The big boy

+
+
+
+
+

Weapon

+
+
+

Jewellery

+
+
+

Artifact

+
+
+
+
+
+

Stat Area

+
+
+
+ ); + // map is a function that is called on every element of an array + // so in this ^^ case it calls Icon('Mashy') which returns some jsx + // that gets put into the dom +} + +module.exports = InvStats;