import React from 'react'; import { Grid, Col, Fade } from 'react-bootstrap'; import { Card, BigButton } from '../components'; import { app } from '../core/app'; export default class InitOptions extends React.Component { constructor(props) { super(props); } /** * Render the component */ render() { const newWorkspaceFunc = () => app.goto('/init/newworkspace'); const offlineInitFunc = () => app.goto('/init/offlineinit'); return (
); } }