From 6da1e5c0dd5f31a6e60ce1b1716d3e0131788f74 Mon Sep 17 00:00:00 2001
From: Matt Kirby <MattJKirby@outlook.com>
Date: Sat, 11 Mar 2023 21:40:41 +0000
Subject: [PATCH] Basic PostAction component

---
 .../src/components/post/PostAction.tsx               | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 daily-thought-frontend/src/components/post/PostAction.tsx

diff --git a/daily-thought-frontend/src/components/post/PostAction.tsx b/daily-thought-frontend/src/components/post/PostAction.tsx
new file mode 100644
index 00000000..95d3a10c
--- /dev/null
+++ b/daily-thought-frontend/src/components/post/PostAction.tsx
@@ -0,0 +1,12 @@
+import styles from '../../styles/PostAction.module.css'
+
+const PostAction = () => {
+
+  return (
+    <div className={styles.container}>
+      <button>Action</button>
+    </div>
+  )
+}
+
+export default PostAction;
\ No newline at end of file
-- 
GitLab