import React from "react"; import { Link } from "react-router-dom"; import { MainContentContainer } from "../ui/atoms/page-content"; import { Search } from "../ui/molecules/search"; import { useIsServer, useLocale } from "../hooks"; import "./index.scss"; // Lazy sub-components const ViewedDocuments = React.lazy(() => import("./viewed-documents")); export default function WritersHomepage() { const isServer = useIsServer(); const locale = useLocale(); return (

Writer's home page

{!isServer && ( )}

Sample pages

  • The Kitchensink (en-US)
  • Web/HTML index
    • HTML/video
  • Web/API index
    • Using Fetch API
  • Web/CSS index
    • CSS Specificity
  • Web/JavaScript index
    • Array.prototype.forEach()
  • Page with lots of BCD tables
  • Largest BCD table

Tools

  • Translations
  • Sitemap
  • Flaws Dashboard
); }