{ const [hasPermission, setHasPermission] = useState(false); const [scanned, setScanned] = useState(false); useEffect(() => { (async () => { const { status } = await BarCodeScanner.requestPermissionsAsync(); setHasPermission(status === "granted"); })(); }, []); const onBarCodeScanned = ({ type, data }: { type: string; data: string }) => { if (!scanned) { setScanned(true); alert(`Bar code with type ${type} and data ${data} has been scanned!`); } }; if (hasPermission === false) { return 카메라 권한을 풀어주세요!; } return ( {scanned && (