/* eslint-disable react/no-danger */
import * as React from "react";
import { Switch, Route, Redirect } from "wouter";
import { Helmet } from "react-helmet";
// @ts-ignore: outdated types
import { useTheme } from "styled-components";
import { Normalize } from "styled-normalize";
import { useIntl } from "@reactizer/intl";
import { Theme } from "@reactizer/theme";
import { Index } from "app/Routes";
import routes from "app/consts/routes";
const Root = () => {
const intl = useIntl();
const theme: Theme = useTheme();
return (
<>
{() => }
>
);
};
export default Root;