The Unknown Developer

Welcome to ReactJsSnippet.

  • ReactJsSnippet Provides React Js related programming solutions, which will help developers to speed up their development process.
  • Subscribe to our Newsletter ( it helps to grow our community ).

How to create ant design card with dropdown in react js?

Solution To create ant design card with dropdown in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use Dropdown component with card. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the dropdown component. <Card title="Card Title" style={{ width: 300 }}> <Dropdown overlay={menu}> <a className="ant-dropdown-link" onClick={(e) => e....

May 7, 2023 · 3 min · The Unknown Developer

How to change width of ant design card in react js?

Solution To change width of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with width. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component sx={{width: 500 }}....

May 6, 2023 · 2 min · The Unknown Developer

How to make ant design card with image in react js?

Solution To make ant design card with image in react js, first install ant design library using npm install antd command import and use the Card component and img element. Snippet In this snippet, see a small example of using the Card component of the Ant design library, And include an img element inside the cover property of the card. <Card hoverable style={{ width: 240 }} cover={ <img alt="example" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" /> } > Table of contents...

April 30, 2023 · 2 min · The Unknown Developer

How to make title center of ant design card in react js?

Solution To make title center of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use headStyle attribute. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Default size card" attribute. then use the style component headStyle={{ textAlign: 'center' }}....

April 29, 2023 · 2 min · The Unknown Developer

How to change header style of ant design card in react js?

Solution To change header style of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with headStyle. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Default size card" attribute. then use the style component headStyle={{ background: "lightpink", color: "#FFF" }}....

April 23, 2023 · 2 min · The Unknown Developer

How to change body style of ant design card in react js?

Solution To change body style of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with bodyStyle. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Default size card" attribute. then use the style component bodyStyle={{ background: "lightpink", color: "#FFF" }}....

April 22, 2023 · 2 min · The Unknown Developer

How to change border radius of ant design card in react js?

Solution To change border radius of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with borderRadius. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component borderRadius: "30px"....

April 16, 2023 · 3 min · The Unknown Developer

How to change size of ant design card in react js?

Solution To change size of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with width. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component width: "560px". <Card title="Card title" bordered style={{ width: "560px", height: "300px", marginRight: "24px", boxShadow: "5px 8px 24px 5px rgba(208, 216, 243, 0....

April 15, 2023 · 2 min · The Unknown Developer

How to change border color of ant design card in react js?

Solution To change border color of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with borderColor. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component borderColor: "pink"....

April 9, 2023 · 3 min · The Unknown Developer

How to change height of ant design card in react js?

Solution To change height of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with height. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component height: "400px". <Card title="Card title" bordered style={{ width: "360px", height: "400px", borderRadius: "16px", marginRight: "24px", boxShadow: "5px 8px 24px 5px rgba(208, 216, 243, 0....

April 8, 2023 · 3 min · The Unknown Developer

How to change background color of ant design card in react js?

Solution To change background color of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with backgroundColor. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component headStyle={{ backgroundColor: '#5c6cfa', color: '#ffffff' }}....

April 2, 2023 · 3 min · The Unknown Developer

How to change padding of ant design card in react js?

Solution To change padding of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it. You have to use style attribute with padding. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. Then use the style component style={{padding: '80 px'}}....

April 2, 2023 · 2 min · The Unknown Developer

How to change shadow of ant design card in react js?

Solution To change shadow of ant design card in react js, first install ant design library using npm install antd command import and use the Card component from it and then add boxshadow style. Snippet In this snippet, see a small example of using the Card component of the Ant design library, with the use of title="Card title" attribute. then use the style component and change width, height, borderradius, and boxshadow....

March 26, 2023 · 2 min · The Unknown Developer

How to create card using ant design in react js?

Solution To create card using ant design in react js, first install ant design library using npm install antd command import and use the Card component from it. Snippet In this snippet, see small example for using Card component of Ant design library, with use of title="Card title" attribute. <Card title="Card title" bordered style={{ width: 500, border: '2px solid black' }}> </Card> Table of contents Install Ant Design. Import Ant Design Components....

March 25, 2023 · 2 min · The Unknown Developer

React Js CheatSheet Books

Create React App npx create-react-app my-app Import import React from 'react' import React, {Component} from 'react'; //multiple imports Components Class component class Greetings extends React.Component { render() { return <h1>Hello, {this.props.name}</h1>; } } Functional component function Greetings(props) { return <h1>Hello, {props.name}</h1>; } Props function Greetings(props) { return <h1>Hello {props.name}</h1>; } function App() { return ( <div> <Greetings name="foo" /> <Greetings name="bar" /> </div> ); } Note: Props are read-only Render render() { return <div />; } Hooks Below is a sample code, which increases the count value when you click + and decreases the count value when you click -....

March 25, 2023 · 2 min · The Unknown Developer

How to change size of ant design checkbox in react js?

Solution To change size of ant design checkbox in react js, you have to use the checkbox component from it, Use this css code .ant-checkbox .ant-checkbox-inner in width: 30px !important; height: 30px !important; then it will change the size of ant design checkbox. Snippet In this snippet, see small example for using Checkbox component of Ant design library, with Use this css code .ant-checkbox .ant-checkbox-inner in width: 30px !important; height: 30px !...

March 19, 2023 · 2 min · The Unknown Developer

How to set default value of ant design checkbox in react js?

Solution To set default value of ant design checkbox in react js, first, install ant design library using npm install antd command import and use the checkbox component from it. You have to use the defaultValue attribute in set default value of ant design checkbox. Snippet In this snippet, see small example for using Checkbox component of Ant design library, with use of defaultValue set default value of ant design checkbox....

March 18, 2023 · 2 min · The Unknown Developer

How to show tooltip with ant design checkbox in react js?

Solution To show tooltip with ant design checkbox in react js, first, install ant design library using npm install antd command, import and use the checkbox within Tooltip then it will show tooltip with ant design checkbox. Snippet In this snippet, see small example for using Checkbox component of Ant design library, Contains the text to be displayed in the tooltip, with use of tooltip component that takes a title prop....

March 17, 2023 · 2 min · The Unknown Developer

How to create ant design carousel with arrows in react js?

Solution To create ant design carousel with arrows in react js, first install ant design library using npm install antd command import carousel component from it. Use the prevArrow and nextArrow props to set the arrow in the Carousel. Snippet In this snippet, see the short example to use Carousel component of ant design library, with the use Array function and <div> element set in <h3>1</h3>. <Carousel arrows {...settings}> <div> <h3>1</h3> </div> <div> <h3>2</h3> </div> <div> <h3>3</h3> </div> <div> <h3>4</h3> </div> </Carousel> Table of contents...

March 10, 2023 · 3 min · The Unknown Developer

Javascript CheatSheet Books

Data Types Javascript is a dynamically typed language and hence though there are data types, variables are not bound to them. Data Type Description number Represents numbers like integers, floating values, etc. string Represents one or more characters bigint Represents integers of arbitrary length null Represents unknown values undefined Represents undefined values object Represents complex data structures boolean Represents either true or false Variables Keyword Description Scope var var is used to declare variables (old way of declaring variables) Function or global scope let let is also used to declare variables (new way)....

March 10, 2023 · 7 min · The Unknown Developer