mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
/* eslint-disable no-console, import/prefer-default-export */
|
|
import LoginForm from './LoginForm';
|
|
|
|
export const Empty = {
|
|
component: LoginForm,
|
|
props: {
|
|
onSubmit(values) {
|
|
console.log('log in with form values:', values);
|
|
},
|
|
},
|
|
};
|