File size: 479 Bytes
536c211 15fd5c0 796d3e2 15fd5c0 ccdfe5f 15fd5c0 796d3e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import './style.css'
export default function App() {
return (
<main class="w-screen my-24 mx-5">
<div class="w-1/2 p-3 flex justify-end">
<button>Translate</button>
</div>
<section class="flex">
{/* amber-500 */}
<textarea class="h-64 p-2 w-1/2 bg-zinc-700" placeholder="Insert input text..." />
<textarea class="h-64 p-7 w-1/2 text-2xl" placeholder='Translation' readonly />
</section>
</main>
)
}
|