File tree 2 files changed +14
-2
lines changed
site/src/pages/GitAuthPage 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change
1
+ import { ComponentMeta , Story } from "@storybook/react"
2
+ import GitAuthPage from "./GitAuthPage"
3
+
4
+ export default {
5
+ title : "pages/GitAuthPage" ,
6
+ component : GitAuthPage ,
7
+ } as ComponentMeta < typeof GitAuthPage >
8
+
9
+ const Template : Story = ( args ) => < GitAuthPage { ...args } />
10
+
11
+ export const Default = Template . bind ( { } )
12
+ Default . args = { }
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ const GitAuthPage: React.FC = () => {
10
10
11
11
return (
12
12
< SignInLayout >
13
- < Welcome message = "Your Git is authenticated !" />
13
+ < Welcome message = "Authenticated with Git !" />
14
14
< p className = { styles . text } >
15
- Return to your terminal to keep coding .
15
+ Your Git authentication token will be refreshed to keep you signed in .
16
16
</ p >
17
17
18
18
< div className = { styles . links } >
You can’t perform that action at this time.
0 commit comments