fr

Daily Challenge 🗓️

Your daily dose of technical intelligence to shine in (developer) society.

Discover a software development quiz per day with its detailed correction.

Frontend, Backend, Mobile, Data, Web, AI, Infra... Everything that can be coded!

Friday 19 April 2024

-

React Native (Legacy)

React Native (Legacy) #3/19

### Which syntax allows you to apply a style to a component?

Code A:
<MyComponent style="background-color: red">

Code B:
<MyComponent style={{"background-color": "red"}}>

Code C:
<MyComponent style={{backgroundColor: "red"}}>

Code D:
import {StyleSheet} from "react-native";
const styles = StyleSheet.create({
	backgroundColor: "red"
})
<MyComponent style={styles}>

Author: Victor SabatierStatus: PublishedQuestion passed 369 times
0
Reviews from developersNo one has reviewed this question yet, be the first!

About Daily Challenge 🗓️

From Monday to Friday, discover each day a quiz question with its detailed answer to enrich your tech knowledge. The questions are proposed by the WeLoveDevs.com community: experienced developers, trainers and freelancers.WeLoveDevs.com helps developers to find their dream job. We also provide over 50 free technical tests in different technologies for those of you who would like to test your knowledge.

History

    ⚠️
    Your browser is badly|not supported!
    We recommend you to use a more modern browser such as Edge, Chrome or Firefox
    Know More