File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export type PortfolioMember = {
1313export enum PortfolioRole {
1414 DIRECTOR = "Director" ,
1515 SUBCOM = "Subcommittee" ,
16- } ;
16+ }
1717
1818export const PORTFOLIOS : PortfolioData [ ] = [
1919 {
Original file line number Diff line number Diff line change 11import { useState } from "react" ;
22import PortfolioCard from "./PortfolioCard" ;
3- import { PortfolioRole , PORTFOLIOS } from "../../../public/data/portfolios" ;
3+ import { PORTFOLIOS } from "../../../public/data/portfolios" ;
44
55const PortfolioDisplay = ( ) => {
66 const [ selectedPortfolio , setSelectedPortfolio ] = useState ( "Careers" ) ;
77
88 const names = PORTFOLIOS . map ( port => port . name ) ;
9-
10- const portfolioMember = ( name : string , role : PortfolioRole ) => {
11- return (
12- < div >
13- < p > { name } </ p >
14- < p > { role } </ p >
15- </ div >
16- ) ;
17- } ;
18-
9+
1910 return (
2011 < div >
2112 < div className = "flex justify-between max-w-full h-10 my-6 snap-x snap-mandatory overflow-scroll hide-scrollbar" >
You can’t perform that action at this time.
0 commit comments