refactor: rewrite file histories page to only focus on selected file (#403)

This commit is contained in:
leo 2024-08-24 11:36:02 +08:00
parent 1caf02ff06
commit db8de81120
No known key found for this signature in database
9 changed files with 327 additions and 103 deletions

View file

@ -0,0 +1,13 @@
using Avalonia.Controls;
namespace SourceGit.Views
{
public partial class RevisionFileContentViewer : UserControl
{
public RevisionFileContentViewer()
{
InitializeComponent();
}
}
}