library-template/src/components/input/index.tsx
2024-01-21 14:13:07 -06:00

9 lines
108 B
TypeScript

import React from 'react'
const Input = () => {
return (
<div>Input</div>
)
}
export default Input