import React from 'react' type Props = { onSkip?: () => void onAuto?: () => void onLog?: () => void location?: string } export const BottomBar: React.FC = ({ onSkip, onAuto, onLog, location = 'Tokyo' }) => { return (
) }