File tree 2 files changed +3
-12
lines changed
2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export type PortfolioMember = {
13
13
export enum PortfolioRole {
14
14
DIRECTOR = "Director" ,
15
15
SUBCOM = "Subcommittee" ,
16
- } ;
16
+ }
17
17
18
18
export const PORTFOLIOS : PortfolioData [ ] = [
19
19
{
Original file line number Diff line number Diff line change 1
1
import { useState } from "react" ;
2
2
import PortfolioCard from "./PortfolioCard" ;
3
- import { PortfolioRole , PORTFOLIOS } from "../../../public/data/portfolios" ;
3
+ import { PORTFOLIOS } from "../../../public/data/portfolios" ;
4
4
5
5
const PortfolioDisplay = ( ) => {
6
6
const [ selectedPortfolio , setSelectedPortfolio ] = useState ( "Careers" ) ;
7
7
8
8
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
+
19
10
return (
20
11
< div >
21
12
< 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