File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export const ns = [
17
17
"page-learn" ,
18
18
"page-upgrades" ,
19
19
"page-developers-index" ,
20
+ "page-roadmap-vision" ,
20
21
"page-what-is-ethereum" ,
21
22
"page-upgrades-index" ,
22
23
"page-wallets-find-wallet" ,
Original file line number Diff line number Diff line change
1
+ import { Meta , StoryObj } from "@storybook/react"
2
+
3
+ import TrilemmaComponent from "."
4
+
5
+ const meta = {
6
+ title : "Organisms / Layouts" ,
7
+ component : TrilemmaComponent ,
8
+ parameters : {
9
+ layout : "fullscreen" ,
10
+ } ,
11
+ decorators : [
12
+ ( Story ) => (
13
+ < div className = "my-8 w-full bg-gradient-to-r from-accent-a/10 to-accent-c/10 p-8" >
14
+ < Story />
15
+ </ div >
16
+ ) ,
17
+ ] ,
18
+ } satisfies Meta < typeof TrilemmaComponent >
19
+
20
+ export default meta
21
+ type Story = StoryObj < typeof meta >
22
+
23
+ export const Trilemma : Story = {
24
+ render : ( ) => < TrilemmaComponent /> ,
25
+ }
You can’t perform that action at this time.
0 commit comments