Introduction

Styled and accessible UI components, to integrate with your JinjaX projects.

How to use 

  1. Install the jinjax-ui python library doing

    pip install jinjax-ui
    

    -- or --

    Copy the components folder from Github into your project.

  2. Add the folder to your JinjaX catalog:

    import jinjax_ui
    
    catalog.add_folder(jinjax_ui.components_path, prefix="ui")
    
  3. Add the global CSS and JS files to your project:

    <head>
      <ui:Globals />
      ...
    
  4. Use the UI components in your components/templates:

    <ui:Alert> ... </ui:Alert>