import { BottomSheet, useBottomSheet } from '@/components/ui/bottom-sheet'; import { Button } from '@/components/ui/button'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React from 'react'; export function BottomSheetTitle() { const { isVisible, open, close } = useBottomSheet(); return ( This bottom sheet includes a title in the header area. The title is centered and uses the theme's title text style. ); }