DEV Community

Discussion on: Compound Components Pattern in React

Collapse
 
pcjmfranken profile image
Peter Franken • Edited

Like so:

# Markdown

Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

Code block:

`​``jsx
import React from 'react'

export default function Hai({ children }){
  return '<h1>{children}</h1>'
}
``​`

Fin.
Enter fullscreen mode Exit fullscreen mode