diff --git a/App.axaml b/App.axaml
index 8e29f9f..c800ae1 100644
--- a/App.axaml
+++ b/App.axaml
@@ -73,14 +73,14 @@
@@ -91,6 +91,9 @@
+
+
+
diff --git a/Views/EditFile.axaml b/Views/EditFile.axaml
new file mode 100644
index 0000000..337db0f
--- /dev/null
+++ b/Views/EditFile.axaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
diff --git a/Views/EditFile.axaml.cs b/Views/EditFile.axaml.cs
new file mode 100644
index 0000000..2dd6c20
--- /dev/null
+++ b/Views/EditFile.axaml.cs
@@ -0,0 +1,15 @@
+using System;
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+
+namespace ReceiptPDFBuilder.Views
+{
+ public partial class EditFile : UserControl
+ {
+ public EditFile()
+ {
+ this.InitializeComponent();
+ }
+ }
+}