aboutsummaryrefslogtreecommitdiff
path: root/src/components/PeerTeachers
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/PeerTeachers')
-rw-r--r--src/components/PeerTeachers/PeerTeachers.svelte42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/components/PeerTeachers/PeerTeachers.svelte b/src/components/PeerTeachers/PeerTeachers.svelte
new file mode 100644
index 0000000..6def4ac
--- /dev/null
+++ b/src/components/PeerTeachers/PeerTeachers.svelte
@@ -0,0 +1,42 @@
+<script lang="ts">
+</script>
+
+<div class="overflow-x-auto">
+ <h1>TODO</h1>
+ <div class="overflow-x-auto">
+ <table class="table w-full">
+ <!-- head -->
+ <thead>
+ <tr>
+ <th></th>
+ <th>Name</th>
+ <th>Job</th>
+ <th>Favorite Color</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- row 1 -->
+ <tr>
+ <th>1</th>
+ <td>Cy Ganderton</td>
+ <td>Quality Control Specialist</td>
+ <td>Blue</td>
+ </tr>
+ <!-- row 2 -->
+ <tr>
+ <th>2</th>
+ <td>Hart Hagerty</td>
+ <td>Desktop Support Technician</td>
+ <td>Purple</td>
+ </tr>
+ <!-- row 3 -->
+ <tr>
+ <th>3</th>
+ <td>Brice Swyre</td>
+ <td>Tax Accountant</td>
+ <td>Red</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+</div>