github.com/replicatedhq/ship@v0.55.0/web/app/src/App.tsx (about) 1 // @ts-ignore 2 import { Ship } from "@replicatedhq/ship-init"; 3 import * as React from "react"; 4 5 // This is a side effect import for including the exported image from 6 // `@replicatedhq/ship-init` to the `@replicatedhq/ship-app` bundle. 7 import "@replicatedhq/ship-init/dist/b3d517c0409239a363a3c18ce9a0eda2.png"; 8 import "@replicatedhq/ship-init/dist/styles.css"; 9 10 class App extends React.Component { 11 render() { 12 return ( 13 <Ship apiEndpoint={process.env.REACT_APP_API_ENDPOINT} headerEnabled /> 14 ); 15 } 16 } 17 18 export { App };