format
This commit is contained in:
parent
f3f02e41ed
commit
6d66a783b7
|
@ -27,13 +27,13 @@ const RegistroComunicado = () => {
|
|||
community_id: ''
|
||||
};
|
||||
|
||||
useEffect(()=>{
|
||||
useEffect(() => {
|
||||
listaComunis();
|
||||
},[])
|
||||
}, [])
|
||||
|
||||
|
||||
const [comunicado, setComunicado] = useState(emptyComunicado);
|
||||
const [comunicados,setComuicados]=useState([]);
|
||||
const [comunicados, setComuicados] = useState([]);
|
||||
const [comunicadoId, setComunicadoId] = useState(null);
|
||||
const [submitted, setSubmitted] = useState(false);
|
||||
const toast = useRef(null);
|
||||
|
@ -42,8 +42,8 @@ const RegistroComunicado = () => {
|
|||
const [globalFilter, setGlobalFilter] = useState(null);
|
||||
|
||||
async function listaComunis() {
|
||||
let comunicadosA=await fetch('http://localhost:4000/post/allPosts', {method:'GET'});
|
||||
let comunicadosRes= await comunicadosA.json();
|
||||
let comunicadosA = await fetch('http://localhost:4000/post/allPosts', { method: 'GET' });
|
||||
let comunicadosRes = await comunicadosA.json();
|
||||
setComuicados(comunicadosRes.message);
|
||||
console.log(comunicadosRes.message);
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ const RegistroComunicado = () => {
|
|||
}
|
||||
})
|
||||
.then(
|
||||
function (response) {
|
||||
function(response) {
|
||||
if (response.status != 201)
|
||||
console.log('Ocurrió un error con el servicio: ' + response.status);
|
||||
else
|
||||
|
@ -73,7 +73,7 @@ const RegistroComunicado = () => {
|
|||
}
|
||||
)
|
||||
.then(
|
||||
function (response) {
|
||||
function(response) {
|
||||
|
||||
}
|
||||
)
|
||||
|
@ -111,15 +111,15 @@ const RegistroComunicado = () => {
|
|||
</div>
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
const rightToolbarTemplate = () => {
|
||||
const rightToolbarTemplate = () => {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<Button label="Exportar" icon="pi pi-upload" className="p-button-help" />
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="grid">
|
||||
|
@ -150,7 +150,7 @@ const rightToolbarTemplate = () => {
|
|||
<span className="p-inputgroup-addon p-button p-icon-input-khaki">
|
||||
<i className="pi pi-pencil"></i>
|
||||
</span>
|
||||
<InputTextarea id="txt_comunicado" rows="4"/>
|
||||
<InputTextarea id="txt_comunicado" rows="4" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue