Basic support for fragments is pretty simple:
export function createFragment(attributes: Attributes & Children | undefined = {},
contents: string[]) {
console.log(contents)
return contents.join('')
}
Example of usage
Forcing sorting using <Fragment key="some id"> would take some work and could be considered for a later release.
See React Fragments
Basic support for fragments is pretty simple:
Example of usage
Forcing sorting using
<Fragment key="some id">would take some work and could be considered for a later release.See React Fragments