mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
20 lines
494 B
React
20 lines
494 B
React
|
import React from 'react';
|
||
|
// import { useTranslation } from 'react-i18next';
|
||
|
import { Image, Tab } from 'semantic-ui-react';
|
||
|
|
||
|
import logo from '../../assets/images/logo.png';
|
||
|
|
||
|
import styles from './AccountPane.module.scss';
|
||
|
|
||
|
const AboutPane = React.memo(() => {
|
||
|
// const [t] = useTranslation();
|
||
|
|
||
|
return (
|
||
|
<Tab.Pane attached={false} className={styles.wrapper}>
|
||
|
<Image centered src={logo} size="large" className={styles.logo} />
|
||
|
</Tab.Pane>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
export default AboutPane;
|