blob: a3145b8e1669f498eaf77c7fdc0cd3200dc70755 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { messages } from '../../shared/gettext';
import ErrorView from './ErrorView';
export default function Launch() {
return (
<ErrorView>
{messages.pgettext('launch-view', 'Connecting to Mullvad system service...')}
</ErrorView>
);
}
|