How to use the hig-vanilla.Table function in hig-vanilla

To help you get started, we’ve selected a few hig-vanilla 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 Autodesk / hig / src / implementations / react / src / adapters / IconCellAdapter.js View on Github external
function IconCellAdapter(props) {
  return (
    {(adapterProps) => (
      <div>
        
        
      </div>
    )}
    
  )
}
github Autodesk / hig / src / implementations / react / src / adapters / NewTextCellAdapter.js View on Github external
function NewTextCellAdapter (props) {
  return (
    {(adapterProps) =&gt; (
      <div>
        
         
        
          
      </div>
    )}
  )   
}
github Autodesk / hig / src / implementations / react / src / adapters / NewIconCellAdapter.js View on Github external
function NewIconCellAdapter(props) {
  return (
    {(adapterProps) =&gt; (
      <div>
        
          
      </div>
    )}
    
  )
}
github Autodesk / hig / src / implementations / react / src / adapters / NewSlotHeadCellAdapter.js View on Github external
function NewSlotHeadCellAdapter(props) {
  return (
    
      {(adapterProps) =&gt; (
        <div>
          
          
          
            {props.children}
          
        </div>
      )}
    
  );
}