mirror of
https://github.com/bitwarden/mobile
synced 2026-01-03 09:03:35 +00:00
19 lines
335 B
C#
19 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();
|
|
}
|
|
}
|
|
}
|