This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gatsby-theme-docz): pass the entry property down to Wrapper
* feat: pass the entry property down to the wrapper * Don't destructure the attribute
- Loading branch information
1 parent
d8832bf
commit 647a693
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import * as React from 'react' | ||
|
||
const Wrapper = ({ children }) => <React.Fragment>{children}</React.Fragment> | ||
const Wrapper = ({ children }) => ( | ||
<React.Fragment>{children}</React.Fragment> | ||
) | ||
export default Wrapper |