tangled
alpha
login
or
join now
graham.systems
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
tidy
Devin Ivy
2 years ago
f7918f19
86198c61
+2
-2
2 changed files
expand all
collapse all
unified
split
src
pages
home.ts
login.ts
+1
-1
src/pages/home.ts
···
25
25
</form>`
26
26
: html`<p>
27
27
It's pretty special here.
28
28
-
<a href="/login">Login.</a>
28
28
+
<a href="/login">Log in.</a>
29
29
</p>`
30
30
}
31
31
<ul>
+1
-1
src/pages/login.ts
···
5
5
6
6
export function login(props: Props) {
7
7
return shell({
8
8
-
title: 'Login',
8
8
+
title: 'Log in',
9
9
content: content(props),
10
10
})
11
11
}