Skip to content

Instantly share code, notes, and snippets.

@t1ger-0527
Last active June 7, 2021 14:51
Show Gist options
  • Select an option

  • Save t1ger-0527/f839a3f59bdcad3300e3e4865bb09027 to your computer and use it in GitHub Desktop.

Select an option

Save t1ger-0527/f839a3f59bdcad3300e3e4865bb09027 to your computer and use it in GitHub Desktop.
pass-dataset
import mapKeys from 'lodash/mapKeys'
const toKebabDataSet = (dataSet = {}) => {
return mapKeys(
dataSet,
(_, key) => 'data-' + key.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase()
)
}
export default (props) => {
return (
<div {...toKebabDataSet(props.dataSet)} />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment