mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
18 lines
335 B
C#
18 lines
335 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public partial class TabsPage : TabbedPage
|
|
{
|
|
public TabsPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|