mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
19 lines
393 B
TypeScript
19 lines
393 B
TypeScript
import { FC } from 'react';
|
|
|
|
import { PlayerView } from '~/containers/player/PlayerView';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
type IProps = {};
|
|
|
|
const BottomContainer: FC<IProps> = () => (
|
|
<div className={styles.wrap}>
|
|
<div className={styles.content}>
|
|
<div className={styles.padder}>
|
|
<PlayerView />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export { BottomContainer };
|