UNPKG

template_assets

Version:

![Compatibility](https://img.shields.io/badge/compatibility-0.6.25-blue) [![Build Status](https://github.com/dfinity/examples/workflows/motoko-superheroes-example/badge.svg)](https://github.com/dfinity/examples/actions?query=workflow%3Amotoko-superheroes

24 lines (21 loc) 665 B
import { HomeScreen } from './Home'; import { SettingsScreen } from './Settings'; import { ProductMarket } from './Product'; import { TicketInformation } from './Product/Information/Ticket'; import { ItemInformation } from './Product/Information/Item'; import { ProductCategoryList } from './Product/Category/List'; const Screens = { Home: HomeScreen, Settings: SettingsScreen, Product: { Market: ProductMarket, Information: { Ticket: TicketInformation, Item: ItemInformation }, Category: { List: ProductCategoryList } } } export default Screens;