Fix incorrect setup of loginView

This commit is contained in:
Robbie Antenesse 2019-09-08 21:56:36 -06:00
parent a9747ec510
commit 5d5d28f6b9
2 changed files with 2 additions and 1 deletions

View File

@ -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">

View File

@ -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) => {