diff --git a/docs/styleguide.config.js b/docs/styleguide.config.js
index 58c17e91e8..54c400b4d2 100644
--- a/docs/styleguide.config.js
+++ b/docs/styleguide.config.js
@@ -7,7 +7,10 @@ module.exports = {
sections: [
{
name: 'Bar',
- components: () => ['../react/BarButton/index.jsx']
+ components: () => [
+ '../react/BarButton/index.jsx',
+ '../react/BarTitle/index.jsx'
+ ]
},
{
name: 'Basics',
diff --git a/react/BarContextProvider/indes.spec.jsx b/react/BarContextProvider/index.spec.jsx
similarity index 100%
rename from react/BarContextProvider/indes.spec.jsx
rename to react/BarContextProvider/index.spec.jsx
diff --git a/react/BarTitle/Readme.md b/react/BarTitle/Readme.md
new file mode 100644
index 0000000000..92f23e3ec4
--- /dev/null
+++ b/react/BarTitle/Readme.md
@@ -0,0 +1,23 @@
+Used to display a title in the Cozy Bar.
+
+### Usage
+
+```jsx static
+import { useBreakpoints } from 'cozy-ui/transpiled/react/hooks/useBreakpoints'
+
+const MyPage = () => {
+ const { isMobile } = useBreakpoints()
+ return (
+