mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
14 lines
407 B
JavaScript
14 lines
407 B
JavaScript
// Alphabet component index file
|
|
import { AlphabetBar } from './AlphabetBar.js';
|
|
|
|
// Export the class
|
|
export { AlphabetBar };
|
|
|
|
/**
|
|
* Factory function to create the appropriate alphabet bar
|
|
* @param {string} pageType - The type of page ('loras' or 'checkpoints')
|
|
* @returns {AlphabetBar} - The alphabet bar instance
|
|
*/
|
|
export function createAlphabetBar(pageType) {
|
|
return new AlphabetBar(pageType);
|
|
} |