Rev 4494 | Rev 4496 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */import React from 'react'import FeedSection from '../../../../../dashboard/templates/linkedin/Feed/FeedSection'const View = ({ backendVars }) => {return (<main className="w-100"><div className="container p-0 app__body layout__content"><div className="d-flex flex-column" style={{ gap: '.5rem' }}></div><div className="d-flex flex-column" style={{ gap: '.5rem' }}><FeedSectionrouteTimeline={backendVars.routeTimeline}backendVars={backendVars}/></div><div className="d-flex flex-column" style={{ gap: '.5rem' }}></div></div></main>)}export default View