// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import React from "react" import { ReactComponent as TailscaleIcon } from "src/assets/icons/tailscale-icon.svg" /** * DisconnectedView is rendered after node logout. */ export default function DisconnectedView() { return ( <>

You logged out of this device. To reconnect it you will have to re-authenticate the device from either the Tailscale app or the Tailscale command line interface.

) }