Getting Started with the KendoReact Notification

This guide provides essential information about using the KendoReact Notification package—you will learn how to install the package, add Notifications to your project, style the components, and activate your license.

This is a Free React NotificationThe KendoReact Notification is free to use, including in production—no sign-up or license required. Check out all 120+ free and premium UI components in the enterprise-grade KendoReact library.

After completing this guide, you will have a free React Notification up and running.

Change Theme
Theme
Loading ...

Before You Begin

sh
npm create vite@latest my-app -- --template react

This guide requires that you have basic knowledge of React and TypeScript, and that you have already created a blank React project.

You can speed up the development of your KendoReact application with the Kendo UI Template Wizard for Visual Studio Code.

Install the Component

sh
npm i @progress/kendo-react-notification

Run these commands in the root of your React project to install the KendoReact Notification package and its dependencies, and the Kendo UI Default theme.

Import the Component

After installing the Notification npm package, import the Notification and NotificationGroup components in the React App.

Place the import statements in the App component file (for example: src/App.tsx) for your project.

tsx
// ES2015 module syntax
import { Notification, NotificationGroup } from '@progress/kendo-react-notification';
tsx
// CommonJS format
const { Notification, NotificationGroup } = require('@progress/kendo-react-notification');

Using the Component

  1. Set a state variable that will determine if the Notification will be visible.

    tsx
    const [success, setSuccess] = React.useState(false);
  2. Set a function that will show the Notification on a button click.

    tsx
    const onToggle = () => setSuccess(true);
  3. Add animation to the component by importing the Fade animation.

    tsx
    import { Fade } from '@progress/kendo-react-animation';
  4. Add the component's markup to the src/App.js file in your project. You will render the Notification component based on the success value. You wrap the entire Notification component inside the Fade component to animate it.

    tsx
    <NotificationGroup
        style={{
            right: 0,
            bottom: 0,
            alignItems: 'flex-start',
            flexWrap: 'wrap-reverse'
        }}
    >
        <Fade>
            {success && (
                <Notification type={{ style: 'success', icon: true }} closable={true} onClose={() => setSuccess(false)}>
                    <span>Your data has been saved.</span>
                </Notification>
            )}
        </Fade>
    </NotificationGroup>
  5. Navigate to http://localhost:3000 to see the KendoReact Notification component on the page.

Style the Component

Are you looking for guidance around how to create visually appealing and consistent user interfaces with Telerik UI components? Check out the Progress Design System.

To use the built-in styling of the components, start by installing a theme:

sh
npm i @progress/kendo-theme-default

With the import "@progress/kendo-theme-default/dist/all.css"; statement present in your code, you already have professionally designed styling applied to your app out-of-box. You can also try any of the other available Kendo UI Themes.

KendoReact Notification APIs

Notification API

KendoReact Notification Dependencies

The Notification package requires you to install the following peer dependencies in your application:

Package NameDescription
react 16.8.2*Contains the functionality necessary to define React components.
react-domContains the React renderer for the web.
@progress/kendo-licensingContains the internal infrastructure related to licensing.
@progress/kendo-svg-iconsContains the KendoReact SVG
@progress/kendo-react-commonContains common utilities that enhance the performance and functionalities of the KendoReact UI components.