mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-12 16:29:01 +05:30
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import React, { Component } from 'react';
|
|
|
|
export default class OAuthInit extends Component {
|
|
static displayName = 'OAuthInit';
|
|
|
|
render() {
|
|
return <span />;
|
|
}
|
|
}
|