Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created September 23, 2021 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/e789ce3d4a0a468cda222a41492e725a to your computer and use it in GitHub Desktop.
Save techomoro/e789ce3d4a0a468cda222a41492e725a to your computer and use it in GitHub Desktop.
import React from "react";
import DropdownLink from "./DropdownLink";
export default function Navigation() {
return (
<nav class="navbar navbar-light bg-light justify-content-between">
<a class="navbar-brand">Navbar</a>
<form class="form-inline">
<DropdownLink />
</form>
</nav>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment