Skip to content

Commit

Permalink
Initial commit of not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarian Ahsan authored and Aarian Ahsan committed Dec 4, 2023
0 parents commit 35b7b0a
Show file tree
Hide file tree
Showing 56 changed files with 18,002 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo
11 changes: 11 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import {Main} from "./src/frontend/main.js";

function App() {
return (
<div>
<Main></Main>
</div>
);
}

export default App;
30 changes: 30 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"expo": {
"name": "ACM-Research-Website",
"slug": "ACM-Research-Website",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/ACMResearchMedal.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/ACMResearchMedal.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
};
};
Loading

0 comments on commit 35b7b0a

Please sign in to comment.