gpt4 book ai didi

ReactJs AdminLTE 仪表板

转载 作者:行者123 更新时间:2023-12-03 14:28:23 28 4
gpt4 key购买 nike

我是 ReactJS 的新手。我想在我的项目中使用 ReactJS-AdminLTE。谁能告诉我如何逐步使用它。

我遵循的步骤

1) 我使用 https://www.tutorialspoint.com/reactjs/ 设置 Reactjs 环境教程

2) 然后我使用命令 npm install adminlte-reactjs

安装 ReactJS-AdminLTE

我的 webpack.config 文件是

var path=require('path');
var config = {
entry: './main.js',

output: {
path: path.join(__dirname, "./"),
filename: 'index.js',
},

devServer: {
inline: true,
port: 8080
},

module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',

query: {
presets: ['es2015', 'react']
}
}
]
}
}

module.exports = config;

App.jsx

import React from 'react';
import reactjsAdminlte from 'adminlte-reactjs';

class App extends React.Component {
render() {

return (

<Box
width = 3
border = true
content = 'The body of the box'
theme = 'box-primary'
title = 'Collapsable'
collapsed = true
boxTools = ['collapse']
/>


);
}
}

export default App;

索引.html

<!DOCTYPE html>
<html lang = "en">

<head>
<meta charset = "UTF-8">
<title>React App</title>
</head>

<body>
<div id = "app"></div>
<script src = "index.js"></script>
</body>

</html>

但是结果没有显示。

最佳答案

您是否使用 ReactDOM 将应用程序组件渲染为 HTML?

import ReactDOM from 'react-dom';
ReactDOM.render(
<App />,
document.getElementById('app')
);

关于ReactJs AdminLTE 仪表板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42905125/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com