forked from jef/streetmerchant
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ion Caza <[email protected]> Co-authored-by: Jef LeCompte <[email protected]>
- Loading branch information
1 parent
faad3e6
commit edf17e9
Showing
4 changed files
with
55 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.idea/ | ||
.vs/ | ||
.vscode/ | ||
build/ | ||
node_modules/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import {Store} from './store'; | ||
|
||
export const MicroCenter: Store = { | ||
cartUrl: '', | ||
links: [ | ||
{ | ||
brand: 'evga', | ||
model: 'xc3 ultra gaming', | ||
url: 'https://www.microcenter.com/product/628344/evga-geforce-rtx-3080-xc3-ultra-gaming-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'ventus 3x overclocked', | ||
url: 'https://www.microcenter.com/product/628331/msi-geforce-rtx-3080-ventus-3x-overclocked-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'tuf gaming', | ||
url: 'https://www.microcenter.com/product/628303/asus-geforce-rtx-3080-tuf-gaming-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'gaming x trio', | ||
url: 'https://www.microcenter.com/product/628330/msi-geforce-rtx-3080-gaming-x-trio-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'xc3 black', | ||
url: 'https://www.microcenter.com/product/628340/evga-geforce-rtx-3080-xc3-black-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
}, | ||
{ | ||
brand: 'zotac', | ||
model: 'trinity overclocked', | ||
url: 'https://www.microcenter.com/product/628607/zotac-geforce-rtx-3080-trinity-overclocked-triple-fan-10gb-gddr6x-pcie-40-graphics-card', | ||
oosLabels: ['sold out'] | ||
} | ||
], | ||
name: 'microcenter' | ||
}; |