1
0
Fork 0

chore: Linter warnings

This commit is contained in:
Joost De Cock 2022-02-12 15:23:37 +01:00
parent 347d666ce7
commit a68f81ec73
22 changed files with 241 additions and 27 deletions

View file

@ -3,6 +3,7 @@ import ViewMenu from './view.js'
import DesignOptions from './design-options'
import CoreSettings from './core-settings'
import Xray from './xray'
import TestDesignOptions from './test-design-options'
export const Ul = props => <ul className="pl-5 list-inside">{props.children}</ul>
export const Li = props => (
@ -92,6 +93,11 @@ const WorkbenchMenu = props => {
{props.gist.renderer === 'react' && <Xray {...props} />}
</>
)}
{props.gist?._state?.view === 'test' && (
<>
<TestDesignOptions {...props} />
</>
)}
</nav>
)
}