years component was created

This commit is contained in:
Vladimir Khvan 2023-02-02 14:48:18 +05:00
parent 946e2caad4
commit 3c204dfc46

View File

@ -0,0 +1,11 @@
import { YearsBody } from "./YearsBody";
import { YearsHeader } from "./YearsHeader";
export const Years = () => {
return (
<>
<YearsHeader />
<YearsBody />
</>
);
};