diff --git a/src/common/Toggle.tsx b/src/common/Toggle.tsx
index dbca00e..1a519d2 100644
--- a/src/common/Toggle.tsx
+++ b/src/common/Toggle.tsx
@@ -27,7 +27,6 @@ const Toggle = ({
};
useEffect(() => {
- console.log('animation on');
Animated.timing(animationXTrans, {
toValue: isOn ? X_COORD_ON : X_COORD_OFF,
duration: ANIMATION_DURATION,
diff --git a/src/components/Lookbook/ListItem.tsx b/src/components/Lookbook/ListItem.tsx
new file mode 100644
index 0000000..758572d
--- /dev/null
+++ b/src/components/Lookbook/ListItem.tsx
@@ -0,0 +1,16 @@
+import { Dimensions, View } from 'react-native';
+
+const ListItem = () => {
+ const { width } = Dimensions.get('screen');
+
+ const COLUMN_COUNT = 2;
+ const ITEM_WIDTH = (width * 0.9) / COLUMN_COUNT;
+
+ return (
+
+
+
+ );
+};
+
+export default ListItem;
diff --git a/src/components/Lookbook/LookbookList.tsx b/src/components/Lookbook/LookbookList.tsx
new file mode 100644
index 0000000..bb7babd
--- /dev/null
+++ b/src/components/Lookbook/LookbookList.tsx
@@ -0,0 +1,11 @@
+import { Dimensions, View } from 'react-native';
+
+const LookbookList = () => {
+ const { width } = Dimensions.get('window');
+ return (
+
+ );
+};
+
+export default LookbookList;
diff --git a/src/pages/ComponentsTest.tsx b/src/pages/ComponentsTest.tsx
index 633a8ed..2b46dc0 100644
--- a/src/pages/ComponentsTest.tsx
+++ b/src/pages/ComponentsTest.tsx
@@ -6,6 +6,8 @@ import LookbookButton from '../components/Lookbook/LookbookButton';
import LookbookAddButton from '../components/Lookbook/LookbookAddButton';
import TextToggle from '../common/TextToggle';
import Toggle from '../common/Toggle';
+import ListItem from '../components/Lookbook/ListItem';
+import LookbookList from '../components/Lookbook/LookbookList';
const TestDropdown = ({ index }: { index: number }) => {
const [value, setValue] = useState(undefined);
@@ -33,9 +35,12 @@ export default function ComponentsTest() {
룩북 컴포넌트
-
- {}} />
-
+
+
+ {}} />
+
+
+
);