Skip to content
Snippets Groups Projects
Select Git revision
  • 2e5dfde96981623dc4df8ceb1d758335b91e40b9
  • main default protected
2 results

citation_parser_ui.py

Blame
  • Forked from Ockenden, Samuel / CiS Projekt
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Home.jsx 459 B
    import React from 'react';
    import Heading from '../components/font/Heading';
    
    function Home() {
      // #################################
      // HOOKS
      // #################################
    
      // #################################
      // FUNCTIONS
      // #################################
    
      // #################################
      // OUTPUT
      // #################################
      return (
        <Heading level="1">Home</Heading>
      );
    }
    
    export default React.memo(Home);