mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
better boris stats
This commit is contained in:
parent
be3401a4e5
commit
d35397108a
6 changed files with 132 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
import React, { FC } from 'react';
|
||||
import { IBorisState } from '~/redux/boris/reducer';
|
||||
import { BorisStatsGit } from '../BorisStatsGit';
|
||||
import { BorisStatsBackend } from '../BorisStatsBackend';
|
||||
|
||||
interface IProps {
|
||||
stats: IBorisState['stats'];
|
||||
|
@ -9,6 +10,7 @@ interface IProps {
|
|||
const BorisStats: FC<IProps> = ({ stats }) => {
|
||||
return (
|
||||
<>
|
||||
<BorisStatsBackend stats={stats} />
|
||||
<BorisStatsGit stats={stats} />
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue