You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
import { Button, Container } from "react-bootstrap";
|
|
|
|
export default function CourseCard() {
|
|
return (
|
|
<Container className="courseComponent1">
|
|
<h1>Sample Course</h1>
|
|
<p>Description:
|
|
<p>This is a sample course offering:</p>
|
|
</p>
|
|
<p>Price:
|
|
<p>PhP 40,000</p>
|
|
</p>
|
|
<Button>Enroll</Button>
|
|
</Container>
|
|
);
|
|
}
|