create symlink for node_modules in generateJson and buildRadar scripts
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user