@yangzw/bruce-app
Version:
A JS/React App automation build scaffolding with zero-configuration and out-of-the-box
20 lines (18 loc) • 481 B
JSX
import React from "react";
import "./index.scss";
export default function Home() {
return (
<div className="home-view">
<p className="home-desc">How to configure this <strong className="home-tag react">React</strong> project</p>
<p className="home-desc">
Please check the
<a
className="home-link gradient-color"
href="https://jowayyoung.github.io/bruce/app"
rel="noreferrer"
target="_blank"
>bruce-app doc</a>
</p>
</div>
);
}