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

README.md

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