// © XlXi 2021 // Graphictoria 5 import React from "react"; import SetTitle from "../../Helpers/Title.js"; import { Legal } from "../Templates/Legal.js"; let Sections = [ { id: 1, title: "test1", content: (<>

test 1

) }, { id: 2, title: "test2", content: (<>

test 2, lol.

) }, { id: 3, title: "the third test", content: (<>

cock

) } ]; class Copyright extends React.Component { componentDidMount() { SetTitle("DMCA"); } render() { return (); } } export { Copyright };