import React from 'react';

type TextinputProps = {
  children?: React.ReactNode;
};

const Textinput = ({ children }: TextinputProps) => {
  return <div>{children}</div>;
};

export default Textinput;
