We have a <CountryList/>
component which list some countries.
- France
- Spain
- Italy
<!DOCTYPE html> | |
<html lang="en"> | |
<body style="margin: 0"> | |
<div style="min-height: 100vh; display: flex; flex-direction: column"> | |
<div style="background-color: darkcyan">Header</div> | |
<div style="flex: 1 1 0px; overflow: auto"> | |
<div style="height: 20000px">Scrollable content</div> | |
</div> | |
<div style="background-color: red">Footer</div> | |
</div> |