Skip to content

Commit

Permalink
seb review
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 1, 2018
1 parent 3399f33 commit b94be64
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/src/modules/components/PageContext.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
import React from 'react';

const PageContext = React.createContext();
// The default value is never and should never be used.
// It's here to improve DX, it's enabling autocompletion for editors supporting TypeScript.
const PageContext = React.createContext({
activePage: {
pathname: '',
},
pages: [],
userLanguage: '',
});

export default PageContext;

0 comments on commit b94be64

Please sign in to comment.