UNPKG

sqlpad

Version:

Web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, SQL Server, Crate and Vertica.

16 lines (14 loc) 440 B
import React from 'react' import AppNav from './AppNav.js' import FullscreenMessage from './common/FullscreenMessage.js' export default props => { document.title = 'SQLPad - Not Found' if (props.currentUser) { return ( <AppNav config={props.config} currentUser={props.currentUser}> <FullscreenMessage>Not Found</FullscreenMessage> </AppNav> ) } return <FullscreenMessage>Not Found</FullscreenMessage> }