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

index.html

Blame
  • nohistoryelement.jsx 196 B
    class NoHistoryElement {
        constructor() {
            this.render();
        }
    
        render() {
            return this.elem = (
                <p>{translation.history.error_unavailable}</p>
            );
        }
    }