1
0
Fork 0
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:
Fedor Katurov 2020-06-09 12:58:41 +07:00
parent be3401a4e5
commit d35397108a
6 changed files with 132 additions and 3 deletions

View file

@ -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} />
</>
);