Skip to content
Snippets Groups Projects
Select Git revision
  • 5a7a54bba01609616fe35fa6dc24be4e56aaa128
  • main default protected
  • userHandling
  • snuggle
4 results

Status.jsx

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Status.jsx 699 B
    import React from 'react';
    import JsonToHtmlDL from '../../../components/boxes/JsonToHtmlDL';
    import Heading from '../../../components/font/Heading';
    
    function Status({ status }) {
      // #################################
      // HOOKS
      // #################################
    
      // #################################
      // FUNCTIONS
      // #################################
    
      // #################################
      // OUTPUT
      // #################################
      return (
        <div className='self-start bg-white border border-UhhLightGrey rounded-lg shadow-lg p-3'>
          <Heading level="4">Status</Heading>
          <JsonToHtmlDL jsonContent={status} />
        </div>
      );
    }
    
    export default React.memo(Status);