mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +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');
|
|
}
|
|
}
|