import React from 'react'; import { Menu, NavItem, Tooltip, Container, Block, Fixed } from 'rebass' import theme from './theme.jsx'; import {MdSettings, MdPalette, MdLayers, MdSave, MdFolderOpen} from 'react-icons/lib/md'; import { Button, Text } from 'rebass'; import FileReaderInput from 'react-file-reader-input'; export class Toolbar extends React.Component { constructor(props) { super(props); this.state = { styleFile: null }; } onUpload(_, files) { const [e, file] = files[0]; const reader = new FileReader(); reader.readAsText(file, "UTF-8"); reader.onload = e => { const style = JSON.parse(e.target.result); console.log(style); } reader.onerror = e => console.log(e.target); } render() { return } }