|
|
@@ -1,5 +1,5 @@
|
|
|
import { useEffect, useState } from 'react'
|
|
|
-import { Container, Row, Col, Card } from 'react-bootstrap'
|
|
|
+import { Container, Row, Card } from 'react-bootstrap'
|
|
|
import Skeleton from '@mui/material/Skeleton';
|
|
|
import Stack from '@mui/material/Stack';
|
|
|
|
|
|
@@ -73,21 +73,22 @@ export function Historial () {
|
|
|
|
|
|
|
|
|
return(
|
|
|
- <Container >
|
|
|
- <Row style={{ marginBottom : 15 }}>
|
|
|
- <Col>
|
|
|
- <h1>Pruebas Psicometricas</h1>
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row style={{ display : 'flex', flexWrap : 'wrap', justifyContent: "center" }}>
|
|
|
- {
|
|
|
- !character.length ?
|
|
|
- <Preview/>
|
|
|
- :
|
|
|
- character.map( (person, i) => <CardChar remove={Remove} key={i} proto={person} id={i}/> )
|
|
|
- }
|
|
|
- </Row>
|
|
|
- </Container>
|
|
|
+ <section>
|
|
|
+ <div className="content-section">
|
|
|
+ <div className="main">
|
|
|
+ <Container >
|
|
|
+ <Row style={{ display : 'flex', flexWrap : 'wrap', justifyContent: "center" }}>
|
|
|
+ {
|
|
|
+ !character.length ?
|
|
|
+ <Preview/>
|
|
|
+ :
|
|
|
+ character.map( (person, i) => <CardChar remove={Remove} key={i} proto={person} id={i}/> )
|
|
|
+ }
|
|
|
+ </Row>
|
|
|
+ </Container>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
)
|
|
|
|
|
|
}
|