1A JS Library that is considered one of the best frameworks/libraries of JS, Thi is Made by Facebook, If u want check out Clever Programmer, the god of React in Youtube
1Dependency injection for most popular framework, check documentation
2for more about example usage.
3
4npm install kibrow -S or yarn add kibrow -S
1
2import toast from 'toasted-notes'
3import 'toasted-notes/src/styles.css';
4
5toast.notify('Hello world!')
6
1{
2 enableTime: true,
3 noCalendar: true,
4 minuteIncrement: 5,
5 time_24hr: true
6}
7
1import React from 'react';
2import ReactDOM from 'react-dom';
3
4const myfirstelement = <h1>Hellow Ammar!</h1>
5
6ReactDOM.render(myfirstelement, document.getElementById('root'));
1class HelloMessage extends React.Component {
2 render() {
3 return (
4 <div>
5 Hello {this.props.name}
6 </div>
7 );
8 }
9}
10
11ReactDOM.render(
12 <HelloMessage name="Pakistan" />,
13 document.getElementById('hello-example')
14);