Remove conflict

This commit is contained in:
unknown
2021-08-30 14:07:50 +07:00
parent ca41dcd194
commit a772d3fca9
3 changed files with 1 additions and 17 deletions

View File

@@ -35,10 +35,6 @@ const SelectCommon = ({ type = 'default', size = 'base', option, children }: Pro
setActive(!isActive)
}
const changeSelectedName = (props:string) => {
setSelectedName(props)
}
return(
<>
<div className={classNames({
@@ -68,7 +64,7 @@ const SelectCommon = ({ type = 'default', size = 'base', option, children }: Pro
[s.selectOption] : true,
[s[size]] : !!size,
})}
onClick = { changeSelectedName!.(item.name) }
onClick = { () => setSelectedName(item.name) }
>{item.name}</div>
)
}

View File

@@ -9,13 +9,10 @@ export { default as IconHome } from './IconHome'
export { default as IconShopping } from './IconShopping'
export { default as IconHeart } from './IconHeart'
export { default as IconVector } from './IconVector'
<<<<<<< HEAD
export { default as IconVectorDown } from './IconVectorDown'
=======
export { default as IconFacebookColor } from './IconFacebookColor'
export { default as IconGoogleColor } from './IconGoogleColor'
export { default as IconApple } from './IconApple'
export { default as ArrowLeft } from './ArrowLeft'
export { default as ArrowRight } from './ArrowRight'
export { default as Close } from './Close'
>>>>>>> 08cd011b5ebb28ba4205d167dc07c81e3b9c3072