mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-03-06 15:59:16 +05:30
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import AbstractState from './AbstractState';
|
|
|
|
export default class FinishState extends AbstractState {
|
|
enter(context) {
|
|
context.navigate('/oauth/finish');
|
|
}
|
|
}
|