import React from 'react'; import { ChevronRightIcon } from '@heroicons/react/solid'; import { XCircleIcon } from '@heroicons/react/outline'; import { Tabs, Banner } from 'src/components'; import { Link } from 'react-router-dom'; import { AdvancedTab, GeneralTab } from './components'; const pages = [ { name: 'Apps', to: '/apps', current: true }, { name: 'Nextcloud', to: '', current: false }, ]; const tabs = [ { name: 'General', component: }, { name: 'Advanced Configuration', component: }, ]; export const AppSingle: React.FC = () => { return ( <>
Nextcloud

Nextcloud

Installed on August 25, 2020
); };