mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 01:39:34 +08:00
17 lines
360 B
TypeScript
17 lines
360 B
TypeScript
import React from 'react'
|
|
import RefSubLayout from '~/layouts/ref/RefSubLayout'
|
|
|
|
interface Props {}
|
|
|
|
const RefHeaderSection: React.FC<Props> = (props) => {
|
|
return (
|
|
<>
|
|
<RefSubLayout.EducationRow>
|
|
<RefSubLayout.Details>{props.children}</RefSubLayout.Details>
|
|
</RefSubLayout.EducationRow>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default RefHeaderSection
|