meta data for this page
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ixc2024:tech:wfrontend:implementing_planning:start [2024/05/28 10:46] – alesta | ixc2024:tech:wfrontend:implementing_planning:start [2024/05/28 10:58] (current) – alesta | ||
---|---|---|---|
Line 28: | Line 28: | ||
); | ); | ||
} | } | ||
+ | |||
+ | [[https:// | ||
+ | [[https:// | ||
Line 147: | Line 150: | ||
Learn about hooks: [[https:// | Learn about hooks: [[https:// | ||
- | Two most useful hooks are: | + | Most useful hooks are: |
**useState()** | **useState()** | ||
Line 162: | Line 165: | ||
{{: | {{: | ||
+ | |||
+ | **useNavigate()** | ||
+ | * It is used for moving into another page, through code | ||
+ | * This can be used when we want to transfer user to a different page, for example after they complete the process of registration, | ||
+ | |||
+ | {{: | ||
+ | |||
+ | ==Navigation== | ||
+ | |||
+ | It is always good to implement some sort of a navigation for your users. A go-to way of doing so is by implementing a Navigation Bar - Navbar. However, navigation can also be implemented for example when we want to open a profile of another user, by clicking on the user's profile picture or their name. | ||
+ | |||
+ | For implementation of Navbars: [[https:// | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | For implementation of Links: [[https:// | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||