diff --git a/src/views/docs/basics/components.html b/src/views/docs/basics/components.html
index fd6e480..e01e7c5 100644
--- a/src/views/docs/basics/components.html
+++ b/src/views/docs/basics/components.html
@@ -59,22 +59,22 @@
Component Structure
References
-
- * **render()**: The render method is responsible for generating HTML content for the component. You can customize this method to define your component's visual representation.
+
+ - **render()**: The render method is responsible for generating HTML content for the component. You can customize this method to define your component's visual representation.
- **componentDidMount()**: This method is called explicitly when the component is mounted. It's not handled directly by Vader; you need to manually call it when needed in your component. You can use it to perform actions after the component has been added to the DOM.
-
+
## Component Lifecycles
-
+
Vader.js provides several lifecycle methods that you can override to handle different events throughout the component's lifecycle:
-
- ### componentUpdated(prev_states, prev_props, snapshot)
+
+ ### componentUpdated()
- The componentUpdated method is an overrideable method that is called by Vader when the component's content has changed.
@@ -116,4 +116,4 @@ References
-