Add chain list views

This commit is contained in:
HeesungB
2022-12-07 18:17:59 +09:00
parent 4ba6812c9a
commit 32caa5bf87
12 changed files with 598 additions and 228 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./width-height-props";
+4
View File
@@ -0,0 +1,4 @@
export interface WidthHeightProps {
width: string | number;
height: string | number;
}