Skip to content

Commit

Permalink
refactor(content-explorer): migrate Footer component (#3725)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
tjuanitas and mergify[bot] authored Oct 28, 2024
1 parent 7c2c26b commit 0a5dc11
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/elements/content-explorer/Footer.scss
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;
Expand Down
10 changes: 10 additions & 0 deletions src/elements/content-explorer/Footer.tsx
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;

0 comments on commit 0a5dc11

Please sign in to comment.