import * as React from
'react'
;
import Card from
'@mui/material/Card'
;
import CardActions from
'@mui/material/CardActions'
;
import CardContent from
'@mui/material/CardContent'
;
import Button from
'@mui/material/Button'
;
export
default
function
Demo() {
return
(
<div style={{ margin: 100 }}>
<h1 style={{ color:
'green'
}}>
GeeksforGeeks
</h1>
<h3><u>React MUI CardActions API</u></h3>
<br />
<Card>
<CardContent variant=
"outlined"
>
<h1>DSA Self Paced Course</h1>
<h3>
Most popular course on DSA trusted by
over 75,000 students! Built
with
years
of experience by industry experts and
gives you a complete package of video
lectures, practice problems, quizzes,
discussion forums and contests.<br />
Start Today !
</h3>
</CardContent>
<CardActions disableSpacing>
<Button variant=
"contained"
>
Learn More
</Button>
</CardActions>
</Card>
</div>
);
}