Created
September 7, 2016 13:21
-
-
Save colmtuite/a95680b75a068a7d24351ef495781082 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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