-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19989 from newrelic/feat/french
Feat/french
- Loading branch information
Showing
10 changed files
with
264 additions
and
15 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
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
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
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from 'react'; | ||
import Navigation from './Navigation'; | ||
import { useStaticQuery, graphql } from 'gatsby'; | ||
|
||
const FrNav = ({ className }) => { | ||
const { nav } = useStaticQuery(frQuery); | ||
return <Navigation nav={nav} className={className} />; | ||
}; | ||
|
||
const frQuery = graphql` | ||
query { | ||
nav(slug: "/") { | ||
id | ||
title(locale: "fr") | ||
url | ||
filterable | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
pages { | ||
...MainLayout_navPagesfr | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
fragment MainLayout_navPagesfr on NavItem { | ||
title(locale: "fr") | ||
url | ||
icon | ||
label | ||
} | ||
`; | ||
|
||
export default FrNav; |
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
Oops, something went wrong.