/* * Copyright (c) 2023 AccelByte Inc. All Rights Reserved * This is licensed software from AccelByte Inc, for limitations * and restrictions contact your company contract manager. */ import React from 'react' import { RouteObject } from 'react-router' import { AppWrapper } from '../AppWrapper' import { TwitchDropLandingWidget } from '@accelbyte/widgets-v2/widgets/twitch-drop' export const TwitchDropsRoute: RouteObject = { path: '/twitch-drops', Component: () => { return ( ) } }