Skip to content

Commit

Permalink
before tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
RohitSharma50 committed Jun 21, 2023
1 parent 046b23a commit 4151ddb
Show file tree
Hide file tree
Showing 28 changed files with 6,695 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugins": [["transform-remove-console",
{ "exclude": ["error", "warn"] }]]
}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# to learn more about gitignore
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore


node_modules/
dist/
.parcel-cache
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\index.html"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"css.lint.unknownAtRules": "ignore"
}
12 changes: 12 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@tailwind base;
@tailwind components;
@tailwind utilities;



/*
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities"; */
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, inital-scale=1.0" />
<title>Namaste React</title>
<link rel="stylesheet" href="index.css" />
</head>

<body>
<div id="root">Not Rendered</div>

<script type="module" src="src/App.js"></script>
</body>

</html>
Loading

0 comments on commit 4151ddb

Please sign in to comment.