mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
left panel with git logs at boris
This commit is contained in:
parent
13ac60a1e6
commit
cb518f0528
15 changed files with 211 additions and 44 deletions
17
src/components/boris/BorisStats/index.tsx
Normal file
17
src/components/boris/BorisStats/index.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import React, { FC } from 'react';
|
||||
import { IBorisState } from '~/redux/boris/reducer';
|
||||
import { BorisStatsGit } from '../BorisStatsGit';
|
||||
|
||||
interface IProps {
|
||||
stats: IBorisState['stats'];
|
||||
}
|
||||
|
||||
const BorisStats: FC<IProps> = ({ stats }) => {
|
||||
return (
|
||||
<>
|
||||
<BorisStatsGit stats={stats} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export { BorisStats };
|
Loading…
Add table
Add a link
Reference in a new issue