insomnia/app/ui/components/editors/auth/netrc-auth.js
Christophe Pouliot 36d3bd5bf5 Add netrc as auth type (#384)
* Add netrc as auth type

* Re add netrc flow types

* Remove period from netrc text to accommodate windows users

* Address comments

* Add netrc network test
2017-07-31 10:29:36 -07:00

17 lines
374 B
JavaScript

import React, {PureComponent} from 'react';
class NetrcAuth extends PureComponent {
render () {
return (
<div className="vertically-center text-center">
<p className="pad super-faint text-sm text-center">
<br/>
Your netrc file will be used to authenticate this request
</p>
</div>
);
}
}
export default NetrcAuth;