feat: add number base converter

This commit is contained in:
rusconn
2022-03-27 23:34:58 +09:00
parent 20df0b8c19
commit 96e019deba
14 changed files with 273 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
import { TextField } from "@mui/material";
import { ComponentPropsWithoutRef, memo } from "react";
type Props = ComponentPropsWithoutRef<typeof TextField>;
const StyledComponent = (props: Props) => (
<TextField
fullWidth
hiddenLabel
size="small"
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
/>
);
export const Component = memo(StyledComponent);
export default Component;