import React, { useContext } from "react" import Style from "./PageDashboard.module.css" import classNames from "classnames" import BoxHeader from "../components/base/BoxHeader" import RepositoryEditor from "../components/providers/RepositoryEditor" import ContextLanguage from "../contexts/ContextLanguage" export default function PageDashboard({ children, className, ...props }) { const { strings } = useContext(ContextLanguage) return (
{strings.dashboardTitle}
) }