+
Rainfall
+
{Math.round(totalRainfall * 100 * INCHES_PER_CLICK) / 100} inches / {Math.round(totalRainfall * 1000 * MM_PER_CLICK) / 1000} mm of water
+
+ );
+};
+
+export default Sensor;
\ No newline at end of file
diff --git a/src/components/rainfall/rainfall.css b/src/components/rainfall/rainfall.css
new file mode 100644
index 0000000..f9011df
--- /dev/null
+++ b/src/components/rainfall/rainfall.css
@@ -0,0 +1,11 @@
+.gauge-body {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ align-content: space-between;
+ text-align: center;
+}
+
+.gauge-label {
+ font-weight: bold;
+}
\ No newline at end of file