Fix naming

This commit is contained in:
MaxOvs
2023-01-06 14:57:14 +03:00
parent f3f6d754df
commit ef832c60ae
3 changed files with 41 additions and 41 deletions

View File

@ -1,17 +1,17 @@
import { SGSelect } from "../src/cg-selectTS";
import { CGSelect } from '../src/cg-selectTS';
const dropdn = new SGSelect({
selector: '.cg-dropdown_one',
placeholder: 'Выберите авто',
items: [
'BMW',
{
id: '213sade',
title: 'Opel',
value: 'ds',
},
'Mersedes',
'MAN',
'Ferari',
]
})
const dropdn = new CGSelect({
selector: '.cg-dropdown_one',
placeholder: 'Выберите авто',
items: [
'BMW',
{
id: '213sade',
title: 'Opel',
value: 'ds',
},
'Mersedes',
'MAN',
'Ferari',
],
});