feishin/src/renderer/layouts/default-layout/player-bar.tsx

17 lines
379 B
TypeScript
Raw Normal View History

2023-03-28 23:59:51 -07:00
import styled from 'styled-components';
import { Playerbar } from '/@/renderer/features/player';
const PlayerbarContainer = styled.footer`
2023-07-01 19:10:05 -07:00
z-index: 200;
grid-area: player;
background: var(--playerbar-bg);
2023-03-28 23:59:51 -07:00
`;
export const PlayerBar = () => {
2023-07-01 19:10:05 -07:00
return (
<PlayerbarContainer id="player-bar">
<Playerbar />
</PlayerbarContainer>
);
2023-03-28 23:59:51 -07:00
};