Fix incorrect setup of loginView
This commit is contained in:
parent
a9747ec510
commit
5d5d28f6b9
|
@ -1,6 +1,6 @@
|
|||
import html from 'choo/html';
|
||||
|
||||
export const loginPartial = (state, emit) => {
|
||||
export const loginView = (state, emit) => {
|
||||
return html`<section>
|
||||
|
||||
<article class="card">
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import html from 'choo/html';
|
||||
|
||||
import { homeView } from './home';
|
||||
import { loginView } from './login';
|
||||
import { searchView } from './search';
|
||||
|
||||
export const viewManager = (state, emit) => {
|
||||
|
|
Loading…
Reference in New Issue