import AppBar from "@mui/material/AppBar"; import Navigation from "./Navigation"; import Toolbar from "@mui/material/Toolbar"; import IconButton from "@mui/material/IconButton"; import MenuIcon from "@mui/icons-material/Menu"; import Typography from "@mui/material/Typography"; import IconSubscribeSettings from "./IconSubscribeSettings"; import * as React from "react"; const ActionBar = (props) => { const title = (props.selectedSubscription !== null) ? props.selectedSubscription.shortUrl() : "ntfy"; return ( {title} {props.selectedSubscription !== null && } ); }; export default ActionBar;