import { Icon } from '@/Components/Icon' import { AppState } from '@/UIModels/AppState' import { observer } from 'mobx-react-lite' type Props = { appState: AppState } export const NoAccountWarning = observer(({ appState }: Props) => { const canShow = appState.noAccountWarning.show if (!canShow) { return null } return (
Sign in or register to back up your notes.