rsnext/examples/with-clerk/components/Layout.js
Sokratis Vidros dfe1b05ff5
Add Clerk.dev example (#24311)
## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.

## Documentation / Examples

- [x] Make sure the linting passes
2021-04-21 18:59:45 +00:00

10 lines
145 B
JavaScript

import Header from './Header'
const Layout = ({ children }) => (
<>
<Header />
<main>{children}</main>
</>
)
export default Layout