import React from 'react'; interface Props { overskrift?: string; children: React.ReactNode; className?: string; } export function OppsummeringUnderpunkt(props: Props) { const { overskrift, children, className, ...rest } = props; return (