updated paths and names

This commit is contained in:
rsandb
2023-01-12 20:34:59 -06:00
parent e6d8ee7d3e
commit 7bb5768dc0
4 changed files with 14 additions and 12 deletions
@@ -11,7 +11,7 @@ export interface ChapterProps {
children: React.ReactNode;
}
export const ChapterCard = ({ chapter, children }: ChapterProps) => {
export const PolicyChapterCard = ({ chapter, children }: ChapterProps) => {
const backgroundColor = useColorModeValue("gray.100", "gray.800");
return (
@@ -10,7 +10,7 @@ export interface SectionProps {
section: SectionInfo;
}
export const SectionCard = ({ section }: SectionProps) => {
export const PolicySectionCard = ({ section }: SectionProps) => {
const backgroundColor = useColorModeValue("gray.200", "gray.700");
return (