Modify the <Root> component
// File: /packages/my-first-theme/src/index.js
const Root = () => {
return (
<>
<h1>Hello Frontity</h1>
</>
)
}// File: /packages/my-first-theme/src/components/index.js
import React from "react"
const Root = () => {
return (
<>
<h1>Hello Frontity</h1>
</>
)
}
export default RootLast updated