14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import axios from 'axios';
|
|
import { Metadata } from 'next';
|
|
import React from 'react';
|
|
|
|
export const metadata: Metadata = {
|
|
};
|
|
|
|
|
|
const SungrowIndex = async () => {
|
|
return <div>SungrowIndex</div>;
|
|
};
|
|
|
|
export default SungrowIndex;
|