12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import './App.css';
|
|
|
|
const App = () => {
|
|
return (
|
|
<div className="content">
|
|
<h1>Rsbuild with React</h1>
|
|
<p>Start building amazing things with Rsbuild.</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|