Berikut contoh kode penggunaan inline CSS untuk memberikan style secara langsung di file yang sama pada react
import React from "react";
function App() {
const myStyle = {
color: "blue",
backgroundColor: "white",
fontSize: "20px",
fontWeight: "bold",
border: "1px solid red",
padding: "5px 10px",
};
return <div style={myStyle}>Hello, World!</div>;
}
export default App;
hasilnya tampak sbb:


0 Komentar