issue-95 Style ide page

added a toolbar and tweaked golden-layout stuff to make it fit on the
page well
This commit is contained in:
Kurt Hutten
2020-11-14 17:35:58 +11:00
parent 585a839525
commit 0ede0be0b4
9 changed files with 157 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
import { render } from '@redwoodjs/testing'
import IdeToolbar from './IdeToolbar'
describe('IdeToolbar', () => {
it('renders successfully', () => {
expect(() => {
render(<IdeToolbar />)
}).not.toThrow()
})
})