2017-06-12 08:46:08 +00:00
|
|
|
import * as React from 'react';
|
2017-06-19 06:38:08 +00:00
|
|
|
import LexEditor from './LexComponents';
|
2017-06-14 12:40:42 +00:00
|
|
|
// import { Table } from '@blueprintjs/table';
|
2017-06-14 08:33:46 +00:00
|
|
|
// const logo = require('./logo.svg');
|
2017-06-12 08:46:08 +00:00
|
|
|
|
|
|
|
|
class App extends React.Component<{}, null> {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2017-06-14 12:40:42 +00:00
|
|
|
<div>
|
|
|
|
|
<nav className="pt-navbar pt-dark">
|
|
|
|
|
<div className="pt-navbar-group pt-align-left">
|
2017-06-15 12:57:15 +00:00
|
|
|
<button className="pt-button pt-minimal pt-icon-large pt-icon-edit" />
|
|
|
|
|
<div className="pt-navbar-heading">Freespeech Lexicon Editor</div>
|
2017-06-14 12:40:42 +00:00
|
|
|
</div>
|
|
|
|
|
</nav>
|
2017-06-15 12:57:15 +00:00
|
|
|
<LexEditor fileName="/new_es.xml" />
|
2017-06-14 12:40:42 +00:00
|
|
|
</div>
|
2017-06-12 08:46:08 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App;
|