19 lines
565 B
JavaScript
19 lines
565 B
JavaScript
import styles from "../../styles/default.module.css";
|
|
import { Container, Row, Col,Stack,Button } from "react-bootstrap";
|
|
function Salir(){
|
|
return(
|
|
<div className={`${styles.salir}`}>
|
|
<Container>
|
|
<Stack direction="horizontal">
|
|
<div className={`${styles.salir} ms-auto`} >
|
|
<a href="./">
|
|
<Button className={`${styles.boton}`} size="sm">Salir</Button>
|
|
</a>
|
|
</div>
|
|
</Stack>
|
|
</Container>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Salir; |