9f5584c37d
* very rough positions/pools data fetching and position list rendering * fix formatting * fix loading * position page routing, bug on add page Co-authored-by: ianlapham <ianlapham@gmail.com>
18 lines
415 B
TypeScript
18 lines
415 B
TypeScript
import { create } from '@storybook/theming'
|
|
|
|
// this themes the storybook UI
|
|
const uniswapBaseTheme = {
|
|
brandTitle: 'Uniswap Design',
|
|
brandUrl: 'https://uniswap.org',
|
|
brandImage: 'https://ipfs.io/ipfs/QmNa8mQkrNKp1WEEeGjFezDmDeodkWRevGFN8JCV7b4Xir',
|
|
}
|
|
export const light = create({
|
|
base: 'light',
|
|
...uniswapBaseTheme,
|
|
})
|
|
|
|
// export const dark = create({
|
|
// base: 'dark',
|
|
// ...uniswapBaseTheme,
|
|
// })
|