Newer
Older
CrypticOreWallet / src / shared-components / list-view / SearchTextbox.tsx
@Drew Lemmy Drew Lemmy on 17 Sep 2020 315 bytes feat: basic table in 'my wallets' view
import React from "react";

import Form from "react-bootstrap/Form";

import "./SearchTextbox.scss";

interface Props {
  placeholder: string;
}

export const SearchTextbox: React.FC<Props> = (props: Props) => (
  <Form.Control type="text" placeholder={props.placeholder} className="list-view-search-textbox" />
);