Skip to content

Instantly share code, notes, and snippets.

@colmtuite
Created September 7, 2016 13:21
Show Gist options
  • Save colmtuite/a95680b75a068a7d24351ef495781082 to your computer and use it in GitHub Desktop.
Save colmtuite/a95680b75a068a7d24351ef495781082 to your computer and use it in GitHub Desktop.
import React from 'react';
import Search from './Search.react';
import Categories from './Categories.react';
import CloseButton from './CloseButton.react';
const inspectorClasses = [
'posFixTL',
'bg-white',
'borderWidth-0',
'borderRightWidth-1',
'borderStyle-solid',
'borderColor-smoke',
'zi-chrome',
'userSelect-none',
'overflow-visible',
'transitionDuration-s',
].join(' ');
export default function Inspector() {
return (
<div className={inspectorClasses} style={{ width: 301, top: 61, left: 45, bottom: 0, paddingTop: 61 }}>
<Search />
<div className="padding-m">
<Categories />
</div>
<CloseButton />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment