How to use the theme-ui/package.json.description function in theme-ui

To help you get started, we’ve selected a few theme-ui examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github system-ui / theme-ui / packages / docs / src / components / head.js View on Github external
export default props => {
  const title = [
    props.title,
    props._frontmatter ? props._frontmatter.title : false,
    'Theme UI',
  ]
    .filter(Boolean)
    .join(' β€” ')

  const { theme } = useThemeUI()

  return (
    
      <title>{title}</title>
      
      
      
      
      
      
      
      
      
    
  )
}
github system-ui / theme-ui / packages / docs / src / components / root.js View on Github external
export default props =&gt;
  &lt;&gt;
    
      <title>Theme UI</title>
      
      
      
      
      
      
      
      
    
    {props.children}
github system-ui / theme-ui / packages / docs / src / components / root.js View on Github external
export default props =&gt;
  
    
      <title>Theme UI</title>
      
      
      
      
      
      
      
      
    
    {props.children}