- Changed LanguageSelectorComponent to use client:visible for better loading performance. - Updated CollapsibleIntro and ContributionCalendar components to utilize client:visible, enhancing user experience by ensuring they load only when in view.
12 lines
227 B
Plaintext
12 lines
227 B
Plaintext
---
|
|
import LanguageSelectorComponent from './LanguageSelectorReact';
|
|
|
|
interface Props {
|
|
defaultLang: string;
|
|
}
|
|
|
|
const { defaultLang } = Astro.props;
|
|
---
|
|
|
|
<LanguageSelectorComponent client:visible defaultLang={defaultLang} />
|