11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import React from 'react'
|
|
import Configuration from '@/app/components/app/configuration'
|
|
|
|
const IConfiguration = async () => {
|
|
return (
|
|
<Configuration />
|
|
)
|
|
}
|
|
|
|
export default IConfiguration
|