Newer
Older
CrypticOreWallet / src / layouts / main / components / nav / Search.tsx
@Drew Lemmy Drew Lemmy on 8 Aug 2020 318 bytes feat: initial commit
import React from "react";

import Form from "react-bootstrap/Form";
import FormControl from "react-bootstrap/FormControl";

import "./Search.scss";

export default function() {
  return (
    <Form inline id="main-nav-search">
      <FormControl type="text" placeholder="Search the Krist network" />
    </Form>
  )
}