Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 9, 2022 04:19 am GMT

How to create Style with typed safe in React JS

That ways very simple using 'CSSProperties'

import { CSSProperties } from "react";

create style

const BannerStyle : CSSProperties = {        background: `url(/img/product/shop-bg.jpg)`,        backgroundRepeat:'no-repeat',        backgroundPosition:'center center',        backgroundSize:'cover',        position:'relative'    }

and then use style into html tag

<div style={BannerStyle}></div>

Original Link: https://dev.to/agiksetiawan/how-to-create-style-with-typed-save-in-react-js-26a

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To