Spaces:
Sleeping
Sleeping
File size: 229 Bytes
319ee36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import "./Index.css";
function Index() {
return (
<div className="Index">
<header className="Index-header">
<div className="card">This is a Card</div>
</header>
</div>
);
}
export default Index;
|