File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React , { useState , useEffect , useContext } from 'react'
22import './App.css'
3- import Footer from '. /components/Footer '
4- import Header from '. /components/Header'
3+ import { Footer } from 'src /components/Layout '
4+ import Header from 'src /components/Header'
55import BookmarksSidebar from './bookmark/BookmarksSidebar'
66import { MarketingBanner } from 'src/components/Elements/MarketingBanner'
77import ScrollCardsNavigator from './components/ScrollCardsNavigator'
Original file line number Diff line number Diff line change 11import React from 'react'
2- import { APP } from '../Constants'
2+ import { APP } from '../../ Constants'
33import { RiCodeSSlashFill } from 'react-icons/ri'
44import { HiLightBulb } from 'react-icons/hi'
55import { trackPageView } from 'src/lib/analytics'
66
7- function Footer ( { feedbackWidget } ) {
7+ export const Footer = ( ) => {
88 const onSourceCodeClick = ( ) => {
99 trackPageView ( 'Source Code' )
1010 window . open ( APP . repository , '_blank' )
@@ -30,7 +30,7 @@ function Footer({ feedbackWidget }) {
3030
3131 return (
3232 < footer className = "AppFooter" >
33- < a className = "linkItem" href = "#" onClick = { ( e ) => onNewFeatureRequest ( e ) } >
33+ < a className = "linkItem" href = "#" onClick = { ( ) => onNewFeatureRequest ( ) } >
3434 < HiLightBulb className = "linkItemIcon" /> New Feature?
3535 </ a >
3636 < a className = "linkItem" href = "#" onClick = { ( ) => onSourceCodeClick ( ) } >
@@ -46,5 +46,3 @@ function Footer({ feedbackWidget }) {
4646 </ footer >
4747 )
4848}
49-
50- export default Footer
Original file line number Diff line number Diff line change 1+ export * from "./Footer"
You can’t perform that action at this time.
0 commit comments