import React from 'react'; // Styles for this element is defined in src/css/custom.css export default class ApiEndpoint extends React.Component { render() { return (
{this.props.method}
{this.props.path}
{this.props.unprotected ? '🔓' : '🔒'}
{this.props.children}
); } }