/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */ /* eslint-env browser */ import React, { Component } from 'react'; import { easyComp } from 'react-easy-state'; import { Link, Redirect } from 'react-router-dom'; import './InitView.css'; import store from '../state'; import DataInput from '../components/DataInput'; import { SheetJSFT } from '../consts'; class InitView extends Component { constructor(props) { super(props); } newCFB() { store.newFile("SheetJS.cfb"); } newZIP() { store.newFile("SheetJS.zip"); } render() { if(!store.isEmpty()) return ( ); return (

Welcome to CFB Editor
View and Edit archives with ease


Your data never leaves your device
You can also drag and drop a file into the window

Click here to make a new ZIP archive

Click here to make a new CFB archive

Download Sample Files (click to show) CFB: pivot_table_test.xls

ZIP: pivot_table_test.xlsb

Show Help

{ window.matchMedia && !window.matchMedia("(min-width: 800px)").matches ? (
(some items may not fit, consider using a wider screen)
) : (
)}

Copyright (C) 2017-present SheetJS LLC
); } } export default easyComp(InitView);