import React from 'react' import { Column, Row } from '../../../atoms' import styles from './Imei.module.css' import { Input } from '../../../molecules/Inputs/Input' interface ImeiProps { onChange: (e: React.ChangeEvent) => void } export const Imei = ({ onChange }: ImeiProps) => { return ( ) }