mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
import AbstractState from './AbstractState';
|
|
|
|
export default class FinishState extends AbstractState {
|
|
enter(context) {
|
|
context.navigate('/oauth/finish');
|
|
}
|
|
}
|