diff --git a/components/common/ColumnItem.tsx b/components/common/ColumnItem.tsx
index bafd2f6a..6d6cab2b 100644
--- a/components/common/ColumnItem.tsx
+++ b/components/common/ColumnItem.tsx
@@ -1,3 +1,4 @@
+import { useMemo } from "react";
import { StyleSheet, View, ViewProps } from "react-native";
const getItemStyle = (index: number, numColumns: number) => {
@@ -9,6 +10,7 @@ const getItemStyle = (index: number, numColumns: number) => {
})();
return {
+ padding: 20,
alignItems,
width: "100%",
} as const;
@@ -19,16 +21,22 @@ type ColumnItemProps = ViewProps & {
index: number;
numColumns: number;
};
+
export const ColumnItem = ({
children,
index,
numColumns,
...rest
-}: ColumnItemProps) => (
-
- {children}
-
-);
+}: ColumnItemProps) => {
+ return (
+
+
+ {children}
+
+
+ );
+};