-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* web: signup github flow (wip) * web: remove @ from profile name * web: signup with github (wip) * web: github flow (wip) * web: signup with github flow * web: cleanup * web: small fix * web: cleanup * web: add user full name for gosh bot data * web: fix data for gosh bot * Update global ver
- Loading branch information
Roman Matusevich
authored
Dec 9, 2022
1 parent
a78db4a
commit 1e08b1b
Showing
21 changed files
with
1,088 additions
and
190 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
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,3 +1,3 @@ | ||
{ | ||
"version": "3.0.2" | ||
"version": "3.0.3" | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,27 @@ | ||
import { classNames } from 'react-gosh' | ||
import emptylogo from '../../assets/images/emptylogo.svg' | ||
|
||
type TExternalListItemProps = { | ||
className?: string | ||
item: { name: string; repos: string[] } | ||
} | ||
|
||
const ExternalListItem = (props: TExternalListItemProps) => { | ||
const { className, item } = props | ||
|
||
return ( | ||
<div className={classNames('border rounded-xl flex flex-nowrap p-5', className)}> | ||
<div className="rounded-xl"> | ||
<img src={emptylogo} alt="" className="w-14 h-14 md:w-20 md:h-20" /> | ||
</div> | ||
<div className="pl-4"> | ||
<div className="text-xl font-medium leading-5">{item.name}</div> | ||
<div className="text-xs text-gray-53596d mt-4"> | ||
{item.repos.join(', ')} | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default ExternalListItem |
Oops, something went wrong.