Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/fetch GitHub repo #217

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
6 changes: 5 additions & 1 deletion pages/projects/[owner]/[repo].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ function project(props: githubFullinfo) {
projectname: props.projectname,
};

return <Layout descriptionText={ProjectPage(projectFullInfo)}></Layout>;
return (
<Layout descriptionText={ProjectPage(projectFullInfo)}>
<></>
InbarDanieli marked this conversation as resolved.
Show resolved Hide resolved
</Layout>
);
}

export default project;
Expand Down