galadrim-feedback 0.0.84 → 0.0.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -70,14 +70,13 @@ export default defineConfig({
70
70
  });
71
71
  ```
72
72
 
73
- ````json
73
+ ```typescript
74
74
  // .babelrc
75
75
  {
76
76
  "presets": ["@babel/preset-typescript"],
77
77
  "plugins": ["babel-plugin-react-generate-paths"]
78
78
  }
79
-
80
-
79
+ ```
81
80
 
82
81
  ## Intégration de FeedbackRoot
83
82
 
@@ -94,7 +93,7 @@ import "galadrim-feedback/dist/styles.css"; // N'oubliez pas d'importer les styl
94
93
  navigate={(path) => navigate(path)} // Fonction de navigation pour utiliser votre router
95
94
  position="bottom-right" // Position du bouton pour ouvrir le mode Feedback (bottom-right, bottom-left, top-right, top-left)
96
95
  />;
97
- ````
96
+ ```
98
97
 
99
98
  ### Explication des Props :
100
99