Simplify types
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2021-08-18 10:42:10 -05:00
parent 29f2c3208c
commit 50c2f08769
1 changed files with 6 additions and 9 deletions

View File

@ -29,11 +29,13 @@ interface Context {
}; };
} }
interface Props {
year: string;
terms: string[];
}
export async function getStaticProps(context: Context): Promise<{ export async function getStaticProps(context: Context): Promise<{
props: { props: Props;
year: string;
terms: string[];
};
}> { }> {
return { return {
props: { props: {
@ -43,11 +45,6 @@ export async function getStaticProps(context: Context): Promise<{
}; };
} }
interface Props {
year: string;
terms: string[];
}
const Year = (props: Props) => { const Year = (props: Props) => {
return ( return (
<div className={styles.main}> <div className={styles.main}>