import cx from "classnames" import React from "react" import { NodeData } from "src/hooks/node-data" import { ReactComponent as ArrowRight } from "src/icons/arrow-right.svg" import { ReactComponent as ChevronDown } from "src/icons/chevron-down.svg" import { ReactComponent as ConnectedDeviceIcon } from "src/icons/connected-device.svg" import { Link } from "wouter" export default function ManagementClientView(props: NodeData) { return (

This device

{props.DeviceName}

{/* TODO(sonia): display actual status */}

Connected

{props.IP}

View device details →

Settings

) } function ExitNodeSelector({ className }: { className?: string }) { return (

Exit node

None

) } function SettingsCard({ title, link, body, className, }: { title: string link: string body: string className?: string }) { return (

{title}

{body}

) }