Refactored and cleaned up code

This commit is contained in:
2023-09-13 23:35:22 -04:00
parent 68a442bed2
commit 4673a5ea07
16 changed files with 332 additions and 353 deletions

View File

@@ -1,12 +1,6 @@
import React from 'react';
import Metar from '@/components/Metar';
import Metar from '@/components/Metars';
export default function Page() {
return (
<>
<div>
<Metar />
</div>
</>
);
return <Metar />;
}