Skip to content

Instantly share code, notes, and snippets.

View majames's full-sized avatar
👨‍💻

Michael James majames

👨‍💻
View GitHub Profile
@majames
majames / vscode-user-settings.json
Created September 6, 2018 23:09
vscode settings
{
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"explorer.autoReveal": false,
"files.autoSave": "onFocusChange",
"editor.rulers": [
100
],
interface TableProps {
historyItems: HistoryItem[];
}
interface TableState {
activeItems: boolean[]
}
export class HistoryTable extends Component<TableProps, TableState> {
state = {