diff --git a/src/App.tsx b/src/App.tsx
index 44964ba..5016ac8 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,9 +1,12 @@
import React from 'react';
+import { WorkoutPlot } from './components/WorkoutPlot';
export function App() {
return (
- Hello, world!
+
Workout editor
+
+
);
}
diff --git a/src/components/WorkoutPlot.tsx b/src/components/WorkoutPlot.tsx
new file mode 100644
index 0000000..1f584e6
--- /dev/null
+++ b/src/components/WorkoutPlot.tsx
@@ -0,0 +1,27 @@
+import React from "react";
+
+const Bar: React.FC<{ width: string; height: string; background: string }> = ({ width, height, background }) => (
+
+);
+
+export const WorkoutPlot: React.FC<{}> = () => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/index.css b/src/index.css
index ec2585e..ce2700d 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,5 +1,7 @@
body {
margin: 0;
+ padding: 40px;
+ background-color: #f5f5e5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;