diff --git a/native/bottom-sheets/bottom-sheet.react.js b/native/bottom-sheets/bottom-sheet.react.js
new file mode 100644
--- /dev/null
+++ b/native/bottom-sheets/bottom-sheet.react.js
@@ -0,0 +1,54 @@
+// @flow
+
+import { BottomSheetModal } from '@gorhom/bottom-sheet';
+import * as React from 'react';
+
+import { useStyles } from '../themes/colors.js';
+
+type Props = {
+ +children: React.Node,
+};
+
+function ForwardedBottomSheet(props: Props, ref): React.Node {
+ const { children } = props;
+
+ const styles = useStyles(unboundStyles);
+
+ const snapPoints = React.useMemo(() => ['25%', '50%'], []);
+
+ return (
+
+ {children}
+
+ );
+}
+
+const unboundStyles = {
+ background: {
+ backgroundColor: 'modalForeground',
+ },
+ handleIndicator: {
+ backgroundColor: 'modalKnob',
+ width: 64,
+ },
+};
+
+const BottomSheet: React.AbstractComponent<
+ Props,
+ React.ElementRef,
+> = React.forwardRef>(
+ ForwardedBottomSheet,
+);
+BottomSheet.displayName = 'BottomSheet';
+
+const MemoizedBottomSheet: typeof BottomSheet = React.memo<
+ Props,
+ React.ElementRef,
+>(BottomSheet);
+
+export default MemoizedBottomSheet;