Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 28, 2020 14:22
Show Gist options
  • Save ashour/479a16a9942f8738a0628ac7cbf857c9 to your computer and use it in GitHub Desktop.
Save ashour/479a16a9942f8738a0628ac7cbf857c9 to your computer and use it in GitHub Desktop.
import React from "react";
export default function LangSwitcher() {
return (
<div className="navbar-item has-dropdown is-hoverable">
<a className="navbar-link">Language</a>
<div className="navbar-dropdown is-right">
<a className="navbar-item">English</a>
<a className="navbar-item">Arabic (عربي)</a>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment