Skip to content

Commit 9734d80

Browse files
committed
✨ feat(component): result-pane component
A Simple Card Component to be used in explorer view and subsiquent flex settings
1 parent 7f24965 commit 9734d80

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<script setup lang="ts">
2+
import { ResultTable } from "@components/atoms";
3+
</script>
4+
5+
<template>
6+
<a-card style="flex: 649px" body-style="padding: 0; overflow-x: scroll">
7+
<result-table />
8+
</a-card>
9+
</template>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import ResultPane from "@components/organisms/ResultPane/ResultPane.vue";
2+
3+
export default ResultPane;

src/components/organisms/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import AppLayout from "@components/organisms/AppLayout";
22
import EditorPane from "@components/organisms/EditorPane";
3+
import ResultPane from "@components/organisms/ResultPane";
34

4-
export { AppLayout, EditorPane };
5+
export { AppLayout, EditorPane, ResultPane };

0 commit comments

Comments
 (0)