react change background color code example

Example 1: backgroundcolor react

const cardStyle = {
    backgroundColor: "#fff"
}

Example 2: how to change list item text color in react

<ListItemText
          primary={
            <Typography variant="h6" style={{ color: "white" }}>
              User
            </Typography>
          }
          secondary={
            <Typography style={{ color: "white" }}>hello</Typography>
          }
        />

Example 3: backgroundcolor react

Finally found the answer!! Go to References --> right cilck on dll file that causing the problem --> select the properties --> check the version --> match the version in properties to web config

<dependentAssembly>
    <assemblyIdentity name="YourDllFile" publicKeyToken="2780ccd10d57b246"               culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-YourDllFileVersion" newVersion="YourDllFileVersion" />
  </dependentAssembly>