mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 07:38:20 -05:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import React from "react"
|
|
|
|
export default function LanguageSwitcher() {
|
|
return (
|
|
<div>
|
|
<select>
|
|
<option value="en">English</option>
|
|
<option value="es">Español</option>
|
|
</select>
|
|
</div>
|
|
)
|
|
}
|