Responsive navbar

This commit is contained in:
Ahmed Al-Taiar
2024-08-09 21:17:35 -04:00
parent 35548bf37a
commit dcb3012a01
4 changed files with 119 additions and 2 deletions

View File

@ -0,0 +1,14 @@
import { render } from '@redwoodjs/testing/web'
import NavbarLayout from './NavbarLayout'
// Improve this test with help from the Redwood Testing Doc:
// https://redwoodjs.com/docs/testing#testing-pages-layouts
describe('NavbarLayout', () => {
it('renders successfully', () => {
expect(() => {
render(<NavbarLayout />)
}).not.toThrow()
})
})