10 lines
227 B
TypeScript
Executable File
10 lines
227 B
TypeScript
Executable File
import React from 'react';
|
|
import PlanForm from './form';
|
|
|
|
interface Props {
|
|
hasDefaultPlan: boolean;
|
|
}
|
|
|
|
export default function CreatePlan({ hasDefaultPlan }: Props) {
|
|
return <PlanForm hasDefaultPlan={hasDefaultPlan} />;
|
|
} |