2. Style Basic
CSS 설정 : class
<style>
.greeting {
color: #00F;
}
</style>CSS 설정 : inline style
export default function Greeting() {
const style = {
color: '#00F',
};
return (
<p style={style}>
Hello, world!
</p>W
);
}Last updated