• How To Pass Data Between Pages In ReactJS?

    We can pass data between pages in ReactJS in both class as well as functional components using Links v5 react-route and useNavigate, useLocation (hooks) v6 of react-router. Let’s see how we can achieve the above in the class component In PostScreen (Component) we have a Create Post link, by clicking the link we will go…

    Continue Reading

  • PrimeNG Free Themes

    primeng/resources/themes/bootstrap4-light-blue/theme.css primeng/resources/themes/bootstrap4-light-purple/theme.css primeng/resources/themes/bootstrap4-dark-blue/theme.css primeng/resources/themes/bootstrap4-dark-purple/theme.css primeng/resources/themes/md-light-indigo/theme.css primeng/resources/themes/md-light-deeppurple/theme.css primeng/resources/themes/md-dark-indigo/theme.css primeng/resources/themes/md-dark-deeppurple/theme.css primeng/resources/themes/mdc-light-indigo/theme.css primeng/resources/themes/mdc-light-deeppurple/theme.css primeng/resources/themes/mdc-dark-indigo/theme.css primeng/resources/themes/mdc-dark-deeppurple/theme.css primeng/resources/themes/fluent-light/theme.css primeng/resources/themes/saga-blue/theme.css primeng/resources/themes/saga-green/theme.css primeng/resources/themes/saga-orange/theme.css primeng/resources/themes/saga-purple/theme.css primeng/resources/themes/vela-blue/theme.css primeng/resources/themes/vela-green/theme.css primeng/resources/themes/vela-orange/theme.css primeng/resources/themes/vela-purple/theme.css primeng/resources/themes/arya-blue/theme.css primeng/resources/themes/arya-green/theme.css primeng/resources/themes/arya-orange/theme.css primeng/resources/themes/arya-purple/theme.css primeng/resources/themes/nova/theme.css primeng/resources/themes/nova-alt/theme.css primeng/resources/themes/nova-accent/theme.css primeng/resources/themes/luna-amber/theme.css primeng/resources/themes/luna-blue/theme.css primeng/resources/themes/luna-green/theme.css primeng/resources/themes/luna-pink/theme.css primeng/resources/themes/rhea/theme.css

    Continue Reading

  • PrimeNG

    PrimeNG is a rich set of open source native Angular UI components. PrimeNG is available at npm, if you have an existing angular application run the following command to download it to your project. npm install primeng npm install primeicons Follow below link for more https://primefaces.org/primeng/showcase/#/setup

    Continue Reading

  • Components In React

    Components Components let us split our UI into independent, reusable pieces, and think about each piece in isolation. Conceptually, components are like JavaScript functions. They return React elements describing what should appear on the screen. Components in React are widely classified as:- 1. Functional Component 2. Class Component The simplest way to define a component…

    Continue Reading

  • How To Change Default Placeholder Of Input Type Date (HTML)

    In HTML by default the placeholder is default date format. Below we will be seeing how to change this default date format placeholder. Above code generate following which all must be getting same. Above code will generate following output but we don’t need this. What next we need to do is we need to add…

    Continue Reading