-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
35 lines (26 loc) · 1.34 KB
/
index.ts
File metadata and controls
35 lines (26 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Containers include:
* AddressBlock (Textblock with address and link to maps.google of the address)
* CommunicationBlock (Textblock with text and links for email and phone contact)
* IconTextBlock (Textblock with an Icontitle and a Paragraph)
* TeamMember (Container that displays a clickable image of a team member with a popup that dislays more information)
* CaseCard (Container that displays a clickable image of a case image with a link to the single case page of that case)
*/
export { default as AddressBlock } from "./AddressBlock";
export * from "./AddressBlock";
export { default as CommunicationBlock } from "./CommunicationBlock";
export * from "./CommunicationBlock";
export { default as IconTextBlock } from "./IconTextBlock";
export * from "./IconTextBlock";
export { default as TeamMember } from "./TeamMember";
export * from "./TeamMember";
export { default as CaseCard } from "./CaseCard";
export * from "./CaseCard";
export { default as CollapsibleText } from "./CollapsibleText";
export * from "./CollapsibleText";
export { default as IconSummaryBlock } from "./IconSummaryBlock";
export * from "./IconSummaryBlock";
export { default as MeetTheFoundersBox } from "./MeetTheFoundersBox";
export * from "./MeetTheFoundersBox";
export { default as CaseTeamMembers } from "./CaseTeamMembers";
export * from "./CaseTeamMembers";