var body: some View {
TabView {
HomeView()
.tabItem {
Text("Home")
}
NotificationsView()
.tabItem {
Text("Notification")
}
MyPageView()
.tabItem {
Text("MyPage")
}
}
}