นอกจากที่เราจะ import Component อื่นๆเข้ามาใช้งานใน Component ได้ เรายังสามารถที่จะ Import ไฟล์ css เข้ามาใช้งานใน Component ได้อีกด้วย
มาลอง Import กันเลยครับ สร้างไฟล์ Button.css มีเนื้อหาดังนี้
.Button {
padding: 20px;
}
แล้ว Import แบบนี้ได้เลยครับ ที่ไฟล์ Button.js
import React, { Component } from 'react';
import './Button.css'; // Tell Webpack that Button.js uses these styles
class Button extends Component {
render() {
// You can use them as regular CSS styles
return <div className="Button" />;
}
}