
solve partially this ticket : https://app.ora.pm/p/fb56ed95daa7456b888d266a050b9afa?v=86662&s=28293&t=k&c=657791f3b1c64e6cbbf22f9378c0bdae --------- Co-authored-by: OxSaitama <arnaud.daubernatali@smart-chain.fr> Co-authored-by: Massi <massi.hamidouche@smart-chain.fr>
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import React from "react";
|
|
import classes from "./classes.module.scss";
|
|
|
|
type IProps = {
|
|
content: JSX.Element;
|
|
};
|
|
|
|
export default class Footer extends React.Component<IProps> {
|
|
public override render(): JSX.Element {
|
|
return <footer className={classes["root"]}>{this.props.content}</footer>;
|
|
}
|
|
}
|