create symlink for node_modules in generateJson and buildRadar scripts

This commit is contained in:
dennis.ludwig
2021-06-17 14:18:23 +02:00
parent 33e36674f7
commit 3b0aab8f08
63 changed files with 5238 additions and 861 deletions

View File

@@ -1,10 +1,13 @@
import React from 'react';
import './hero-headline.scss';
export default function ({ children, alt }: React.PropsWithChildren<{ alt?: string }>) {
import React from "react";
import "./hero-headline.scss";
export default function ({
children,
alt,
}: React.PropsWithChildren<{ alt?: string }>) {
return (
<div className='hero-headline'>
<div className="hero-headline">
{children}
<span className='hero-headline__alt'>{alt}</span>
<span className="hero-headline__alt">{alt}</span>
</div>
);
}