import React, {FC, useState} from "react"; import {__} from "@/globals"; import AutoSizeInput from "react-input-autosize"; export type welcometopProps = { } export const Welcometop: FC = ({}) => { const [inputValue, setInputValue] = useState(''); return false return
setInputValue(e.target.value)} inputClassName="bg-transparent border-none shadow-none placeholder:text-opacity-50 text-gray-750 outline-none focus:outline-none" placeholder="Name (New Year's Clearance Sale)" extraWidth={10} injectStyles={false} minWidth={50} />

{__('Optional. Private. Use for identifying offers in the admin.')}

}