create-crack
Version:
CLI tool for creating crack projects
27 lines (23 loc) • 620 B
JSX
import React from "react";
const App = () => {
const containerStyle = {
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "100vh",
};
return (
<div style={containerStyle}>
<h1 style={{ textAlign: "center", margin: "auto" }}>
<div>欢迎访问</div>
<div style={{ marginBottom: "10px" }}>
<a href="https://juejin.cn/user/3782764966460398/posts">掘金地址</a>
</div>
<div>
<a href="https://github.com/xun082/create-crack.git">Github地址</a>
</div>
</h1>
</div>
);
};
export default App;