mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 14:37:41 +00:00
15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
import {Store} from './store';
|
|
|
|
export const Evga: Store = {
|
|
cartUrl: '',
|
|
links: [
|
|
{
|
|
brand: 'evga',
|
|
model: 'ftw3, xc3 black, xc3 gaming, xc3 ultra gaming',
|
|
url: 'https://www.evga.com/products/productlist.aspx?type=0&family=GeForce+30+Series+Family&chipset=RTX+3080',
|
|
oosLabels: ['out of stock']
|
|
}
|
|
],
|
|
name: 'evga'
|
|
};
|