13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
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" />;
|
|
}
|
|
}
|