Created
February 28, 2020 14:22
-
-
Save ashour/479a16a9942f8738a0628ac7cbf857c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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