remix-nlux
Version:
Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.
21 lines (19 loc) • 443 B
text/typescript
import {State} from '../@types/State';
import {stocks} from './stocks';
export const initialState: State = {
appliedFilter: {
exchanges: [],
sectors: [],
marketCaps: [],
oneMonthChange: null,
oneWeekChange: null,
},
account: {
investedAmount: 10000,
currentValue: 11226,
},
stockRows: stocks.map(stock => ({
data: stock,
selected: false,
})),
};