1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-04 08:50:18 +01:00
bitwarden-mobile/src/App/Pages/SyncPage.cs

15 lines
221 B
C#
Raw Normal View History

2016-05-02 23:50:16 +02:00
using System;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public class SyncPage : ContentPage
{
public SyncPage()
{
Title = "Sync";
Content = null;
}
}
}