tangled
alpha
login
or
join now
olaren.dev
/
washing-machine
0
fork
atom
washes u
0
fork
atom
overview
issues
pulls
pipelines
fix: submit button
olaren.dev
2 months ago
238761e3
d738b870
+4
-4
1 changed file
expand all
collapse all
unified
split
src
App.tsx
+4
-4
src/App.tsx
reviewed
···
4
4
return (
5
5
<div class="max-w-xl w-full p-5">
6
6
<h1 class="text-2xl mb-10">Washing Machine</h1>
7
7
-
<div class="flex">
7
7
+
<form class="flex">
8
8
<input class="bg-slate-300 p-2 w-full" type="search" />
9
9
-
<buttom class="bg-slate-800 text-neutral-200 p-2" type="submit">
9
9
+
<button class="bg-slate-800 text-neutral-200 p-2" type="submit">
10
10
wash
11
11
-
</buttom>
12
12
-
</div>
11
11
+
</button>
12
12
+
</form>
13
13
</div>
14
14
);
15
15
};