mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-13 17:52:38 +02:00
12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import PricingBasic from '@/components/pricing/pricing-section'
|
||
|
|
|
||
|
|
const page = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<PricingBasic />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default page
|