Skip to content
This repository has been archived by the owner on Jun 17, 2023. It is now read-only.

Commit

Permalink
standard link look and feel on new collaboration proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicfarr committed Oct 29, 2022
1 parent b23b986 commit 5eda7a7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/containers/proposals/ProposalList.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { useTheme } from "@emotion/react";
import KeyboardArrowRightIcon from "@mui/icons-material/KeyboardArrowRight";
import { Avatar, Box, IconButton, Paper, Typography } from "@mui/material";
import React, { useEffect } from "react";
Expand All @@ -9,6 +10,7 @@ const text = {
textOverflow: "ellipsis",
};
export const ProposalList = () => {
const theme = useTheme();
const nav = useNavigate();

const [proposals, setProposals] = React.useState([]);
Expand All @@ -22,7 +24,14 @@ export const ProposalList = () => {
return (
<Box>
<Typography variant="body1">
Create a <Link to="/proposal/new">New Collaboration Proposal</Link>
Create a{" "}
<Link
to="/proposal/new"
title="new collaboration proposal"
style={{ color: theme.palette.primary.main }}
>
New Collaboration Proposal
</Link>
</Typography>
<Paper variant="outlined" sx={{ padding: 1 }}>
<Typography variant="h5">Proposals ({proposals.length})</Typography>
Expand Down

0 comments on commit 5eda7a7

Please sign in to comment.