Skip to content

Commit

Permalink
Add GitHub url to community tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouh committed Oct 3, 2024
1 parent d0a7fbb commit a1fd0bc
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import Reddit from '../../../UI/CustomSvgIcons/Reddit';
import Twitter from '../../../UI/CustomSvgIcons/Twitter';
import Facebook from '../../../UI/CustomSvgIcons/Facebook';
import TikTok from '../../../UI/CustomSvgIcons/TikTok';
import GitHub from '../../../UI/CustomSvgIcons/GitHub';
import SectionContainer, { SectionRow } from './SectionContainer';
import { ListItem } from '../../../UI/List';
import List from '@material-ui/core/List';
Expand Down Expand Up @@ -64,6 +65,11 @@ const communityItems = [
icon: <TikTok fontSize="small" color="inherit" />,
label: <Trans>TikTok</Trans>,
},
{
onClick: () => Window.openExternalURL('https://github.com/4ian/GDevelop'),
icon: <GitHub fontSize="small" color="inherit" />,
label: <Trans>GitHub</Trans>,
},
];

const CommunitySection = () => {
Expand Down

0 comments on commit a1fd0bc

Please sign in to comment.