import React from "react"; import { FormattedMessage } from "react-intl"; import styled from "styled-components"; const Root = styled.div` display: flex; flex-direction: column; `; function Dashboard() { return (

); } export default Dashboard;