-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(content-explorer): migrate Footer component (#3725)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7c2c26b
commit 0a5dc11
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '../common/variables'; | ||
|
||
.bce-footer { | ||
.bce-Footer { | ||
display: flex; | ||
flex: 0 0 70px; | ||
align-items: center; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import * as React from 'react'; | ||
import './Footer.scss'; | ||
|
||
export interface FooterProps { | ||
children: React.ReactNode; | ||
} | ||
|
||
const Footer = ({ children }: FooterProps) => <footer className="bce-Footer">{children}</footer>; | ||
|
||
export default Footer; |