a4c7b0574a
Add confirmation dialogs for disconnecting and stopping advertisement of a subnet route. Updates #10261 Signed-off-by: Sonia Appasamy <sonia@tailscale.com>
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
import React from "react"
|
|
|
|
const PortalContainerContext = React.createContext<HTMLElement | undefined>(
|
|
undefined
|
|
)
|
|
export default PortalContainerContext
|