git-statistics 0.1.0

Collect commits from Git repository and present statistics in a comfortable way.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import './index.css';
import '@icon-park/react/styles/index.css';

import {pickRepo} from './open_repo.ts';
import {listen} from '@tauri-apps/api/event';
import {MenuEvent} from './events.ts';

void listen(MenuEvent.OPEN, pickRepo).then();

ReactDOM.createRoot(document.getElementById('root')!).render(
	<React.StrictMode>
		<App/>
	</React.StrictMode>,
);