Posts
Chat
Members
Info
December 29, 2020 at 5:26pm
ABOUT USconst Container = styled.div<InfoSectionProps>`display: flex;flex-direction: column;letter-spacing: 2px;line-height: 1.8em;align-items: center;padding:2rem;${props => props.primary && css`background: yellow /*doesnt work*/`background: ${props => props.primary ? "red" : "yellow"} /*gives both infoSection yellow background, so not recognising primary props*/}`export default (props: InfoSectionProps) => {console.log(props)const { header, subheader, content, logo, footerLogo, cta, ctaText } = propsreturn (<Container>{logo && <LogoImage src={logo} alt="logo" />}<Content ><Header> {header}</Header><SubHeader>{subheader}</SubHeader>{content!.map((paragraph: string, index: number) =><p key={index}>{paragraph}</p>)}{cta && <BookNowButton>{ctaText}</BookNowButton>}</Content>{footerLogo && <BGroundImage src={footerLogo} alt="cat" />}</Container >);}APP.JS<InfoSectionprimarylogo={Logo}header={homeSection.header}subheader={homeSection.subheader}content={homeSection.content}cta={homeSection.cta}ctaText={homeSection.ctaText}/><InfoSectionlogo={Logo}header={aboutUsSection.header}subheader={aboutUsSection.subheader}content={aboutUsSection.content}footerLogo={Boss}/>export interface InfoSectionProps {primary?: boolean,logo?: any;header?: string;subheader?: string;content?: string[];footerLogo?: any;cta?: boolean,ctaText?: string}
December 30, 2020 at 9:15am
January 6, 2021 at 4:04pm
Good day
Pls I need help on react
Am using external js, which was link to the app from the index.html file of the public folder.
I noticed that when the page get tender for the first time the actions click works but when navigating to other pages,
the action won't work until the page is refreshed
Pls help me out on this
January 7, 2021 at 7:35am
January 15, 2021 at 10:00pm
Hello dear, have a good time
How to make instagram clone and amazon clone and youtube clone and ...
www.courses.bangimo.com
February 1, 2021 at 11:09pm
February 2, 2021 at 12:30pm
February 7, 2021 at 2:45pm
good evening dear developers, I want to use react native contact to access my contacts but my application crashes on startup. when i remove i getContacts code the application chews. I need your help, I am working on a project and I have a deadline to meet
React native can be crazy sometimes, mine has refused to give me the latest snapshot of my state
Hello, I am looking to get pointed in the right direction with a react router and react transition group issue.
I am creating a routed slide transition based on this project https://github.com/nicgirault/dynamic-transitions. I am able to get this partially working as the enter transition works, but the exit does not always work as the actual component gets unmounted before the exit transition.
In the uploaded gif we can see the first exit has content, but the second exit loses its content. I am using childFactory in the TransitionGroup which seems to be working as we see the divs properly get the right classes. I just can't figure out why the content unmounts before the transition.
Another note is that the exit works with the root path /, and is not working on any other ex. /routeName. I have looked into causes being css, properly setting keys, the routes themselves too no avail. Any help would be appreciated.
February 10, 2021 at 10:05am
February 15, 2021 at 10:05am
March 2, 2021 at 7:56am
March 5, 2021 at 7:09pm
March 7, 2021 at 11:32am
March 10, 2021 at 9:08am
Which component services do you use when developing microfrontend?
March 11, 2021 at 12:56pm
March 20, 2021 at 2:08pm