less hacking way of pulling poe data

This commit is contained in:
2018-08-27 23:54:27 -05:00
parent 5423b81c95
commit 97acc0d4fa
34 changed files with 651 additions and 221 deletions

View File

@@ -0,0 +1,5 @@
.quad-tab {
background-size: 24px 24px;
background-image: linear-gradient(to right, grey 1px, transparent 1px),
linear-gradient(to bottom, grey 1px, transparent 1px);
}

View File

@@ -0,0 +1,12 @@
import React from 'react';
import './stash-tab.scss';
interface IProps {
data: any;
}
export class StashTab extends React.Component<IProps, any> {
render() {
return <div style={{ height: '577px', width: '577px' }} className="quad-tab" />;
}
}